mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Fixing fatal error caused by missing argument.
This commit is contained in:
parent
9ccbe5e269
commit
1eb746bf7e
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@
|
||||||
<span class="notice">
|
<span class="notice">
|
||||||
<?php
|
<?php
|
||||||
echo __('Your cache is ');
|
echo __('Your cache is ');
|
||||||
if (Cache::isInitialized()):
|
if (Cache::isInitialized('default')):
|
||||||
echo __('set up and initialized properly.');
|
echo __('set up and initialized properly.');
|
||||||
$settings = Cache::settings();
|
$settings = Cache::settings();
|
||||||
echo '<p>' . $settings['engine'];
|
echo '<p>' . $settings['engine'];
|
||||||
|
|
Loading…
Add table
Reference in a new issue