From e30a2762495525ca164c24173ac58bd1752b1206 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Fri, 21 May 2004 19:24:23 +0000 Subject: [PATCH] Now paging will mantain the "fullsearch" option. Bug 1438. (http://moodle.org/bugs/bug.php?op=show&bugid=1438) --- mod/glossary/view.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/glossary/view.php b/mod/glossary/view.php index acebd1313c..c3af03db50 100644 --- a/mod/glossary/view.php +++ b/mod/glossary/view.php @@ -292,7 +292,7 @@ if ( $offset < 0 ) { $paging = '' . $paging . ''; } else { - $paging = "" . $paging . ''; + $paging = "" . $paging . ''; } if ($count > $entriesbypage ) { for ($i = 0; ($i*$entriesbypage) < $count ; $i++ ) { @@ -307,7 +307,7 @@ if ($offset / $entriesbypage == $i) { $paging .= '' . $pagenumber . ''; } else { - $paging .= "" . $pagenumber . ''; + $paging .= "" . $pagenumber . ''; } } $paging = "
" . get_string ("jumpto") . " $paging
"; -- 2.39.5