From: Michael Rasmussen Date: Wed, 3 Jun 2015 21:26:01 +0000 (+0200) Subject: Navigate using icons X-Git-Url: http://git.datanom.net/qtadmin.git/commitdiff_plain/61fd79d76b35cc957a0fbe75416fed8c72bad710 Navigate using icons --- diff --git a/index.php b/index.php index 1482893..42e4130 100644 --- a/index.php +++ b/index.php @@ -71,10 +71,10 @@ if ($pageNum > 1) { $page = $pageNum - 1; - $prev = "[[\"Previous\"]"; - $first = "[\"First\"]"; + $prev = " [\"Previous\" | "; + $first = " \"First\" "; } else { $prev = ' '; // we're on page one, don't print previous link $first = ' '; // nor the first page link @@ -82,10 +82,10 @@ if ($pageNum < $maxPage) { $page = $pageNum + 1; - $next = "[[\"Next\"]"; - $last = "[\"Last\"]"; + $next = " \"Next\" | "; + $last = " \"Last\" "; } else { $next = ' '; // we're on the last page, don't print next link $last = ' '; // nor the last page link