You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

error.php 319B

12345678910111213
  1. <div class="error">
  2. <h2><?php p($l->t('Error')) ?></h2>
  3. <ul>
  4. <?php foreach($_["errors"] as $error):?>
  5. <li>
  6. <p><?php p($error['error']) ?></p>
  7. <?php if(isset($error['hint']) && $error['hint']): ?>
  8. <p class='hint'><?php p($error['hint']) ?></p>
  9. <?php endif;?>
  10. </li>
  11. <?php endforeach ?>
  12. </ul>
  13. </div>