error.php 799 B

12345678910111213141516171819202122232425262728293031
  1. <html>
  2. <head>
  3. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  4. <meta http-equiv="content-type" content="text/html;charset=utf-8">
  5. <title><?php echo Qii::i('Throw Exception'); ?></title>
  6. <?php
  7. include(dirname(__FILE__) . DS . 'style.php');
  8. ?>
  9. </head>
  10. <body>
  11. <h1><font color="red"><?php echo Qii::i('Throw Exception'); ?></font></h1>
  12. <p style="text-align:right;"><?php echo Qii::i('The page you are looking at is being generated dynamically by Qii'); ?></p>
  13. <ul><?php echo Qii::i('Error information'); ?>
  14. <?php
  15. //$messageArray = Qii::getPrivate('error');
  16. foreach ($message AS $error) {
  17. ?>
  18. <li><code><?= $error; ?></code></li>
  19. <?php
  20. }
  21. ?>
  22. </ul>
  23. <?php
  24. include(dirname(__FILE__) . DS . 'footer.php');
  25. ?>
  26. </body>
  27. </html>