_notices.html.php 493B

123456789101112131415
  1. <?php if(!empty($notices)): ?>
  2. <div class="lim-debug lim-notices">
  3. <h4> &#x2192; Notices and warnings</h4>
  4. <dl>
  5. <?php $cpt = 1; foreach($notices as $notice): ?>
  6. <dt>[<?php echo $cpt.'. '.error_type($notice['errno'])?>]</dt>
  7. <dd>
  8. <?php echo $notice['errstr']?> in <strong><code><?php echo $notice['errfile']?></code></strong>
  9. line <strong><code><?php echo $notice['errline']?></code></strong>
  10. </dd>
  11. <?php $cpt++; endforeach; ?>
  12. </dl>
  13. <hr>
  14. </div>
  15. <?php endif; ?>