diff --git a/inc/ticket_list.inc.php b/inc/ticket_list.inc.php index cf5b9659..df12bede 100644 --- a/inc/ticket_list.inc.php +++ b/inc/ticket_list.inc.php @@ -86,10 +86,12 @@ if ($total > 0) { $prev_page = ($page - 1 <= 0) ? 0 : $page - 1; $next_page = ($page + 1 > $pages) ? 0 : $page + 1; - $autorefreshInSeconds = $_SESSION['autorefresh'] / 1000; - $autorefresh = ''; - - echo sprintf($hesklang['tickets_on_pages'], $total, $pages) . $autorefresh . '
'; + echo sprintf($hesklang['tickets_on_pages'], $total, $pages); + echo '
+ + + '.$hesklang['nti'].' +


'; if ($pages > 1) { @@ -230,18 +232,18 @@ if ($total > 0) { // Prepare ticket priority switch ($ticket['priority']) { case 0: - $ticket['priority'] = ''; + $ticket['priority'] = ''; $color = 'danger'; break; case 1: - $ticket['priority'] = ''; + $ticket['priority'] = ''; $color = 'warning'; break; case 2: - $ticket['priority'] = ''; + $ticket['priority'] = ''; break; default: - $ticket['priority'] = ''; + $ticket['priority'] = ''; } // Set message (needed for row title) @@ -387,7 +389,7 @@ if ($total > 0) { // End ticket row echo ' - ' . $ticket['priority'] . '  + ' . $ticket['priority'] . '  '; } // End while ?> @@ -396,10 +398,6 @@ if ($total > 0) {
- - - -