Clarify which cache is using the indicated engine.

This commit is contained in:
mark_story 2012-02-04 10:42:48 -05:00
parent ace9fefb02
commit 5cf5ee4410
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ endif;
$settings = Cache::settings();
if (!empty($settings)):
echo '<span class="notice success">';
echo __d('cake_dev', 'The %s is being used for caching. To change the config edit APP/Config/core.php ', '<em>'. $settings['engine'] . 'Engine</em>');
echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/core.php ', '<em>'. $settings['engine'] . 'Engine</em>');
echo '</span>';
else:
echo '<span class="notice">';

View file

@ -39,10 +39,10 @@ endif;
</p>
<p>
<?php
\$settings = Cache::settings();
\$settings = Cache::settings('_cake_core_');
if (!empty(\$settings)):
echo '<span class=\"notice success\">';
echo __d('cake_dev', 'The %s is being used for caching. To change the config edit APP/Config/core.php ', '<em>'. \$settings['engine'] . 'Engine</em>');
echo __d('cake_dev', 'The %s is being used for core caching. To change the config edit APP/Config/core.php ', '<em>'. \$settings['engine'] . 'Engine</em>');
echo '</span>';
else:
echo '<span class=\"notice\">';