aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/field.php2
-rw-r--r--tests/repetition.php2
-rw-r--r--tests/subfield.php3
3 files changed, 4 insertions, 3 deletions
diff --git a/tests/field.php b/tests/field.php
index 35427a6..b9f9c3a 100644
--- a/tests/field.php
+++ b/tests/field.php
@@ -40,7 +40,7 @@ if ($isis->db) {
// Format output.
echo "<pre>\n";
echo "Selected field: $field: $field_name.\n";
- echo "Showing entry $entry from $entries total entries.\n";
+ echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
echo "Repetitions found: ". count($result[$field_name]) .".\n";
echo "\n";
print_r($result[$field_name]);
diff --git a/tests/repetition.php b/tests/repetition.php
index 7283427..37d0889 100644
--- a/tests/repetition.php
+++ b/tests/repetition.php
@@ -40,7 +40,7 @@ if ($isis->db) {
// Format output.
echo "<pre>\n";
echo "Selected field: $field: $field_name.\n";
- echo "Showing entry $entry from $entries total entries.\n";
+ echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
echo "Repetitions found: ". count($result[$field_name]) .".\n";
echo "\n";
print_r($result[$field_name]);
diff --git a/tests/subfield.php b/tests/subfield.php
index 892f2b5..117b8ce 100644
--- a/tests/subfield.php
+++ b/tests/subfield.php
@@ -41,10 +41,11 @@ if ($isis->db) {
$display->navbar($entry, $entries, $repetition, '&field='. $field . '&subfield='. $subfield);
// Format output.
+ $link = $display->entry_link($entry);
echo "<pre>\n";
echo "Selected field: $field: $field_name.\n";
echo "Selected subfield: $subfield: $subfield_name.\n";
- echo "Showing entry $entry from $entries total entries.\n";
+ echo "Showing entry ". $display->entry_link($entry) ." from $entries total entries.\n";
echo "Repetitions found: ". count($result[$field]) .".\n";
echo "\n";
print_r($result[$field_name]);