diff --git a/App/View/Pages/home.ctp b/App/View/Pages/home.ctp index 779c2d8debd..9066a1d0b8a 100644 --- a/App/View/Pages/home.ctp +++ b/App/View/Pages/home.ctp @@ -15,12 +15,13 @@ * @since CakePHP(tm) v 0.10.0.1076 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ -use Cake\Core\Configure, - Cake\Utility\Debugger, - Cake\Cache\Cache, - Cake\Model\ConnectionManager, - Cake\Utility\Validation, - Cake\Error; +use Cake\Core\Configure; +use Cake\Utility\Debugger; +use Cake\Cache\Cache; +use Cake\Model\ConnectionManager; +use Cake\Utility\Validation; +use Cake\Error; + if (Configure::read('debug') == 0): throw new Error\NotFoundException(); endif; @@ -81,14 +82,14 @@ endif;

'; - echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/core.php ', ''. $settings['engine'] . 'Engine'); + echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/cache.php ', ''. $settings['engine'] . 'Engine'); echo ''; else: echo ''; - echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/Config/core.php'); + echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/Config/cache.php'); echo ''; endif; ?> diff --git a/lib/Cake/Console/Templates/skel/View/Pages/home.ctp b/lib/Cake/Console/Templates/skel/View/Pages/home.ctp index 1bbd5a2201a..2a5bffb4afc 100644 --- a/lib/Cake/Console/Templates/skel/View/Pages/home.ctp +++ b/lib/Cake/Console/Templates/skel/View/Pages/home.ctp @@ -16,12 +16,12 @@ * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ -use Cake\Core\Configure, - Cake\Cache\Cache, - Cake\Model\ConnectionManager, - Cake\Error\NotFoundException, - Cake\Utility\Debugger, - Cake\Utility\Validation; +use Cake\Core\Configure; +use Cake\Cache\Cache; +use Cake\Model\ConnectionManager; +use Cake\Error\NotFoundException; +use Cake\Utility\Debugger; +use Cake\Utility\Validation; if (Configure::read('debug') == 0): throw new NotFoundException(); @@ -83,14 +83,14 @@ endif;

'; - echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/core.php ', ''. $settings['engine'] . 'Engine'); + echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/cache.php ', ''. $settings['engine'] . 'Engine'); echo ''; else: echo ''; - echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/Config/core.php'); + echo __d('cake_dev', 'Your cache is NOT working. Please check the settings in APP/Config/cache.php'); echo ''; endif; ?>