Development

Changeset 1435

You must first sign up to be able to contribute.

Changeset 1435

Show
Ignore:
Timestamp:
06/13/06 14:28:19 (2 years ago)
Author:
fabien
Message:

fixed small notice when no title exists (closes #534)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/response/sfWebResponse.class.php

    r1415 r1435  
    370370  { 
    371371    $metas = $this->parameter_holder->getAll('helper/asset/auto/meta'); 
    372  
    373     return $metas['title']
     372   
     373    return (array_key_exists('title', $metas)) ? $metas['title'] : false
    374374  } 
    375375