X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/3056d1173b4c0225eea764cd1bdfae965b198c14..f1c0988bd7f213a40ce3cfcf6d7522bd2fd12afa:/index.php?ds=sidebyside diff --git a/index.php b/index.php index f0a8936..ec831b0 100644 --- a/index.php +++ b/index.php @@ -25,14 +25,16 @@ echo $util->getHeader(); echo $util->getHeading(); - echo "{$util->getUser()} - Logout"; + echo "Rows per page {$util->getUser()} + Logout"; $which = ($util->isAdmin() == true) ? 'all' : $util->getUser(); $rows = $DB->getQMails($offset, $rowsPerPage, $which); $numrows = $DB->numRows(); echo "$numrows quarantined mail(s)"; echo "
Received | Cause | "; + echo "Received | Cause | "; echo "Sender | Recipient | Subject | Action | "; echo ""; @@ -50,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); @@ -71,9 +75,9 @@ if ($pageNum > 1) { $page = $pageNum - 1; - $prev = " "; - $first = " "; } else { $prev = ' '; // we're on page one, don't print previous link @@ -82,9 +86,9 @@ if ($pageNum < $maxPage) { $page = $pageNum + 1; - $next = " "; - $last = " "; } else { $next = ' '; // we're on the last page, don't print next link @@ -98,6 +102,8 @@ onclick="javascript: checkAction(\'release\');"/>'; echo ''; + echo ''; echo " |
---|