Skip to content

Commit

Permalink
Fixing escape parameter usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 28, 2009
1 parent 4bf807b commit 6c18c0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cake/console/templates/skel/views/layouts/default.ctp
Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion cake/libs/view/layouts/default.ctp
Expand Up @@ -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>
Expand Down

0 comments on commit 6c18c0e

Please sign in to comment.