Changeset 19643 for trunk/www


Ignore:
Timestamp:
09/15/19 15:04:05 (5 years ago)
Author:
Daniela Dorner
Message:
added total number of alerts
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/flare_alerts/sent.php

    r19642 r19643  
    127127
    128128    $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>";
    130140    // table with alerts
    131141    echo "<table border='1' style='border-collapse:collapse'>\n";
Note: See TracChangeset for help on using the changeset viewer.