From 9e08cf6ed121923fb2a8e21db3b62c0eb1afdd04 Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 15 Apr 2006 06:02:21 +0000 Subject: [PATCH] DOn't show intro on first page of single view --- mod/data/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/data/view.php b/mod/data/view.php index f195763516..5f0fa85e3a 100755 --- a/mod/data/view.php +++ b/mod/data/view.php @@ -186,7 +186,7 @@ echo '
'; } - if ($data->intro and empty($page) and empty($record)) { + if ($data->intro and empty($page) and empty($record) and $mode != 'single') { print_simple_box(format_text($data->intro), 'center', '70%', '', 5, 'generalbox', 'intro'); } -- 2.39.5