euromark 13 years ago
parent
commit
5324a8ca9c

+ 1 - 1
lib/Cake/Console/Templates/skel/Config/core.php

@@ -306,7 +306,7 @@ $engine = 'File';
 
 // In development mode, caches should expire quickly.
 $duration = '+999 days';
-if (Configure::read('debug') >= 1) {
+if (Configure::read('debug') > 0) {
 	$duration = '+10 seconds';
 }
 

+ 1 - 1
lib/Cake/Console/Templates/skel/View/Pages/home.ctp

@@ -15,7 +15,7 @@
  * @since         CakePHP(tm) v 0.10.0.1076
  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
  */
-if (Configure::read('debug') == 0):
+if (!Configure::read('debug')):
 	throw new NotFoundException();
 endif;
 App::uses('Debugger', 'Utility');

+ 1 - 1
lib/Cake/Error/ExceptionRenderer.php

@@ -116,7 +116,7 @@ class ExceptionRenderer {
 			}
 		}
 
-		$isNotDebug = (Configure::read('debug') == 0);
+		$isNotDebug = !Configure::read('debug');
 		if ($isNotDebug && $method == '_cakeError') {
 			$method = 'error400';
 		}

+ 1 - 1
lib/Cake/Test/test_app/View/Layouts/flash.ctp

@@ -22,7 +22,7 @@
 <title><?php echo $page_title?></title>
 <?php echo $this->Html->charset(); ?>
 
-<?php if (Configure::read('debug') == 0) { ?>
+<?php if (!Configure::read('debug')) { ?>
 <meta http-equiv="Refresh" content="<?php echo $pause?>;url=<?php echo $url?>"/>
 <?php } ?>
 <style><!--