ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/reports/php/alerts/alerts.php
(Generate patch)

Comparing projects/cms/source/reports/php/alerts/alerts.php (file contents):
Revision 1.9 by pjm2, Fri Mar 16 19:55:15 2001 UTC vs.
Revision 1.12 by pjm2, Wed Mar 21 11:54:18 2001 UTC

# Line 75 | Line 75 | function printReports($machine) {
75      $alertArray = getdirArray("$alertDirectory/$machine", 'rsort');
76    
77      echo <<<EOT
78 <        <center>
79 <          <font size="4">
80 <            <b>
78 >         <p>&nbsp;</p>
79 >         <table border="0" cellpadding="3" cellspacing="2" bgcolor="#000066" width="100%">
80 >          <tr>
81 >           <td>
82 >            <font color="white">
83 >             <b>
84                Current alerts for $machine
85 <            </b>
86 <          </font>
87 <          <font size="2">
88 <            <br>Sorted by time, latest first.
89 <          </font>
90 <        </center>
85 >             </b>
86 >             <font size="2">
87 >              <br>Sorted by time, latest first.
88 >             </font>
89 >            </font>
90 >           </td>
91 >          </tr>
92 >          <tr>
93 >           <td bgcolor="white">
94      
95   EOT;
96  
# Line 104 | Line 110 | EOT;
110      }
111      else {
112          echo "There are currently no alerts held about <b>$machine</b>";
113 +        printLine("");
114      }
115 +
116 +    echo <<<EOT
117 +         </td>
118 +        </tr>
119 +       </table>
120 + EOT;
121   }
122  
123  
# Line 140 | Line 153 | EOT;
153  
154         if ($machine == "ALL") {
155             $machine_array = getdirArray($alertDirectory, 'asort');
156 <           foreach ($machine_array as $machine) {
157 <               printReports($machine);
156 >           if ($machine_array != FALSE) {
157 >               foreach ($machine_array as $machine) {
158 >                   printReports($machine);
159 >               }
160             }
161         }
162         else {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines