root/devel-backup/units/display/function_messages.php

Revision 45, 276 bytes (checked in by sven, 3 years ago)

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     global $messages;
4     if (sizeof($messages) > 0) {
5
6 ?>
7
8         <table width="100%" id="messages">
9             <tr>
10                 <td>
11                     <ul>
12 <?php
13         foreach($messages as $message) {
14 ?>
15                         <li><?php echo $message; ?></li>
16 <?php
17         }
18 ?>
19                     </ul>
20                 </td>
21             </tr>
22         </table>
23
24 <?php
25
26     }
27
28 ?>
Note: See TracBrowser for help on using the browser.