Development

Changeset 6219

You must first sign up to be able to contribute.

Changeset 6219

Show
Ignore:
Timestamp:
11/30/07 01:15:31 (11 months ago)
Author:
dwhittle
Message:

dwhittle: fixed bug (fatal) in default module defaultLayout when output escaping is disabled

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/data/modules/default/templates/defaultLayout.php

    r6121 r6219  
    1919<div class="sfTContainer"> 
    2020  <?php echo link_to(image_tag('/sf/sf_default/images/sfTLogo.png', array('alt' => 'symfony PHP Framework', 'class' => 'sfTLogo', 'size' => '186x39')), 'http://www.symfony-project.org/') ?> 
    21   <?php echo $sf_data->getRaw('sf_content') ?> 
     21  <?php echo sfConfig::get('escaping_strategy', false) ? $sf_data->getRaw('sf_content') : $sf_content; ?> 
    2222</div> 
    2323</body>