Skip to content

Commit

Permalink
Fixed missing string append operator for baked homepage to include ba…
Browse files Browse the repository at this point in the history
…nner.
  • Loading branch information
predominant committed Oct 2, 2011
1 parent 5d19b6d commit f69fc93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/Console/Templates/default/views/home.ctp
Expand Up @@ -3,7 +3,7 @@ $output = "
<iframe src=\"http://cakephp.org/bake-banner\" width=\"830\" height=\"160\" style=\"overflow:hidden; border:none;\">
<p>For updates and important announcements, visit http://cakefest.org</p>
</iframe>\n";
$output = "<h2>Sweet, \"" . Inflector::humanize($app) . "\" got Baked by CakePHP!</h2>\n";
$output .= "<h2>Sweet, \"" . Inflector::humanize($app) . "\" got Baked by CakePHP!</h2>\n";
$output .="
<?php
App::uses('Debugger', 'Utility');
Expand Down

0 comments on commit f69fc93

Please sign in to comment.