aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/index.php b/tests/index.php
index f17cae5..c2b2e9d 100644
--- a/tests/index.php
+++ b/tests/index.php
@@ -44,12 +44,14 @@ if ($isis->db) {
if ($entry != 1) {
$prev = $entry - 1;
+ echo '<a href="index.php?entry=1">first</a> ';
echo '<a href="index.php?entry='. $prev .'">&lt; prev</a> ';
}
if ($entry < $entries) {
$next = $entry + 1;
- echo '<a href="index.php?entry='. $next .'">next &gt;</a>';
+ echo '<a href="index.php?entry='. $next .'">next &gt;</a> ';
+ echo '<a href="index.php?entry='. $entries .'">last</a>';
}
// Format output.