Skip to content

Commit

Permalink
Fix for non exist var
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Oct 25, 2024
1 parent cbe8c71 commit 304bb2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Admin/Configuration/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<h3>Application info</h3>
CakeVersion: <?php echo Configure::version(); ?>
<br />
Debug-Mode: <?php echo $this->element('Setup.ok', ['value' => $this->element('Setup.yes_no', ['value' => Configure::read('debug')]), 'ok' => !Configure::read('debug'), 'escape' => false]);?> | Productive: <?php echo $this->element('Setup.ok', ['value' => $this->element('Setup.yes_no', ['value' => Configure::read('Config.live')]), 'ok' => Configure::read('Config.live'), 'escape' => false]); ?><br />
Debug-Mode: <?php echo $this->element('Setup.ok', ['value' => $this->element('Setup.yes_no', ['value' => (bool)Configure::read('debug')]), 'ok' => !Configure::read('debug'), 'escape' => false]);?> | Productive: <?php echo $this->element('Setup.ok', ['value' => $this->element('Setup.yes_no', ['value' => (bool)Configure::read('Config.live')]), 'ok' => (bool)Configure::read('Config.live'), 'escape' => false]); ?><br />
<br />
Errors: <?php
$level = error_reporting();
Expand Down

0 comments on commit 304bb2e

Please sign in to comment.