Skip to content

Commit

Permalink
Fixing a syntax error in lib/Cake/View/Pages/home.ctp
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Kr�mer committed May 15, 2011
1 parent 8aa3159 commit 93a8209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Cake/View/Pages/home.ctp
Expand Up @@ -57,7 +57,7 @@ endif;
<p>
<?php
$filePresent = null;
if (file_exists(APP . 'Config' . DS 'database.php')):
if (file_exists(APP . 'Config' . DS . 'database.php')):
echo '<span class="notice success">';
echo __d('cake_dev', 'Your database configuration file is present.');
$filePresent = true;
Expand Down

0 comments on commit 93a8209

Please sign in to comment.