X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/b4a9e00ed371c95536e74e700df60d6590413c45..55e904ab4e0994f21d26a68e70497fcacd8ec2d6:/index.php diff --git a/index.php b/index.php index 9180768..54b82d8 100644 --- a/index.php +++ b/index.php @@ -1,5 +1,5 @@ root . 'lib/db_factory.php'; require_once $CFG->root . 'lib/utils.inc.php'; @@ -34,7 +34,7 @@ $numrows = $DB->numRows(); echo "$numrows quarantined mail(s)"; echo "
Received | Cause | "; + echo "Received | Cause | "; echo "Sender | Recipient | Subject | Action | "; echo ""; @@ -52,10 +52,12 @@ $url = urlencode($id); $checkbox = ""; $recipient = "{$row->recipient}"; - $action = ""; + $action = ""; $action .= ""; - $action .= " "; + $action .= " "; $action .= ""; + $action .= " "; + $action .= ""; $sender = $row->sender; $received = strftime("%c", $row->time_iso); $quaratinefor = $util->convertContent($row->quaratinefor); @@ -73,9 +75,9 @@ if ($pageNum > 1) { $page = $pageNum - 1; - $prev = " "; - $first = " "; } else { $prev = ' '; // we're on page one, don't print previous link @@ -84,9 +86,9 @@ if ($pageNum < $maxPage) { $page = $pageNum + 1; - $next = " "; - $last = " "; } else { $next = ' '; // we're on the last page, don't print next link |
---|