選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

27 行
616B

  1. <?php
  2. /**
  3. * @var \App\View\AppView $this
  4. * @var string $message
  5. * @var string $url
  6. */
  7. use Cake\Core\Configure;
  8. $this->setLayout('error');
  9. if (Configure::read('debug')) :
  10. $this->setLayout('dev_error');
  11. $this->assign('title', $message);
  12. $this->assign('templateName', 'error400.php');
  13. $this->start('file');
  14. echo $this->element('auto_table_warning');
  15. $this->end();
  16. endif;
  17. ?>
  18. <h2><?= h($message) ?></h2>
  19. <p class="error">
  20. <strong><?= __d('cake', 'Error') ?>: </strong>
  21. <?= __d('cake', 'The requested address {0} was not found on this server.', "<strong>'{$url}'</strong>") ?>
  22. </p>

Powered by TurnKey Linux.