remove old readme
[atutor.git] / docs / themes / default15 / errormessage.tmpl.php
1 <?php 
2 /*
3  * @author Jacek Materna
4  *
5  *      One Savant variable: $item which is the processed ouput message content according to lang spec.
6  */
7  
8  global $_base_href;
9  
10 // header
11 ?>
12 <div id="error">
13         <h4><?php echo _AT('the_follow_errors_occurred'); ?></h4>
14         <?php if (is_array($this->item)) : ?>
15                 <ul>
16                 <?php foreach($this->item as $e) : ?>
17                         <li><?php echo $e; ?></li>
18                 <?php endforeach; ?>
19                 </ul>
20         <?php endif; ?>
21 </div>