mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-13 16:34:44 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
39 lines
946 B
PHP
39 lines
946 B
PHP
<?php
|
|
use Cake\Core\Configure;
|
|
use Cake\Error\Debugger;
|
|
|
|
$this->layout = 'error';
|
|
|
|
if (Configure::read('debug')) :
|
|
$this->layout = 'dev_error';
|
|
|
|
$this->assign('title', $message);
|
|
$this->assign('templateName', 'error400.ctp');
|
|
|
|
$this->start('file');
|
|
?>
|
|
<?php if (!empty($error->queryString)) : ?>
|
|
<p class="notice">
|
|
<strong>SQL Query: </strong>
|
|
<?= h($error->queryString) ?>
|
|
</p>
|
|
<?php endif; ?>
|
|
<?php if (!empty($error->params)) : ?>
|
|
<strong>SQL Query Params: </strong>
|
|
<?php Debugger::dump($error->params) ?>
|
|
<?php endif; ?>
|
|
<?= $this->element('auto_table_warning') ?>
|
|
<?php
|
|
if (extension_loaded('xdebug')) :
|
|
xdebug_print_function_stack();
|
|
endif;
|
|
|
|
$this->end();
|
|
endif;
|
|
?>
|
|
<h2><?= h($message) ?></h2>
|
|
<p class="error">
|
|
<strong><?= __d('cake', 'Error') ?>: </strong>
|
|
<?= __d('cake', 'The requested address {0} was not found on this server.', "<strong>'{$url}'</strong>") ?>
|
|
</p>
|