From 63e8d9de5bf668b5c7aad91565f6b2623a4b688f Mon Sep 17 00:00:00 2001 From: chriskl Date: Sun, 20 Nov 2005 03:06:14 +0000 Subject: [PATCH] Preserve expanded/collapsed across result pages. --- display.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/display.php b/display.php index 89d91817..0d73834e 100644 --- a/display.php +++ b/display.php @@ -9,7 +9,7 @@ * @param $return_desc The return link name * @param $page The current page * - * $Id: display.php,v 1.52 2005/10/18 03:45:16 chriskl Exp $ + * $Id: display.php,v 1.53 2005/11/20 03:06:14 chriskl Exp $ */ // Prevent timeouts on large exports (non-safe mode only) @@ -278,7 +278,7 @@ if (is_object($rs) && $rs->recordCount() > 0) { // Show page navigation - $misc->printPages($_REQUEST['page'], $max_pages, "display.php?page=%s&{$str}&{$str2}"); + $misc->printPages($_REQUEST['page'], $max_pages, "display.php?page=%s&{$str}&{$str2}&strings=" . urlencode($_REQUEST['strings'])); echo "\n"; // Check that the key is actually in the result set. This can occur for select @@ -366,7 +366,7 @@ echo "
\n"; echo "

", $rs->recordCount(), " {$lang['strrows']}

\n"; // Show page navigation - $misc->printPages($_REQUEST['page'], $max_pages, "display.php?page=%s&{$str}&{$str2}"); + $misc->printPages($_REQUEST['page'], $max_pages, "display.php?page=%s&{$str}&{$str2}&strings=" . urlencode($_REQUEST['strings'])); } else echo "

{$lang['strnodata']}

\n"; -- 2.39.5