Fixing escape parameter usage.

This commit is contained in:
mark_story 2009-10-28 18:41:29 -04:00
parent 4bf807b4be
commit 6c18c0e0c7
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@
<?php echo $html->link(
$html->image('cake.power.gif', array('alt'=>__("CakePHP: the rapid development php framework", true), 'border'=>"0")),
'http://www.cakephp.org/',
array('target'=>'_blank', 'escape'=>false), null
array('target' => '_blank', 'escape' => false)
);
?>
</div>

View file

@ -55,7 +55,7 @@
<?php echo $html->link(
$html->image('cake.power.gif', array('alt'=> __("CakePHP: the rapid development php framework", true), 'border'=>"0")),
'http://www.cakephp.org/',
array('target'=>'_blank'), null, false
array('target' => '_blank', 'escape' => false)
);
?>
</div>