Browse Source

Fixing a syntax error in lib/Cake/View/Pages/home.ctp

Florian Krämer 15 years ago
parent
commit
93a8209b43
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/Cake/View/Pages/home.ctp

+ 1 - 1
lib/Cake/View/Pages/home.ctp

@@ -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;