Changeset 19643
- Timestamp:
- 09/15/19 15:04:05 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/flare_alerts/sent.php
r19642 r19643 127 127 128 128 $result = $db->query($query)->fetchAll(PDO::FETCH_ASSOC); 129 echo "<h2>Found ".sizeOf($result)." Alert(s) from ".$start." to ".$stop.": </h2>"; 129 echo "<h2>Found ".sizeOf($result)." Alert(s) from ".$start." to ".$stop." ("; 130 if ($source == -1) 131 echo "all sources"; 132 else 133 echo "source key ".$source; 134 echo ", "; 135 if ($type == -1) 136 echo "all recepients"; 137 else 138 echo "recepient key ".$type; 139 echo "): </h2>"; 130 140 // table with alerts 131 141 echo "<table border='1' style='border-collapse:collapse'>\n";
Note:
See TracChangeset
for help on using the changeset viewer.