From ad2212db2e37fc30ffb0f41973d9a71cdf3822ee Mon Sep 17 00:00:00 2001 From: robsiemb Date: Tue, 18 May 2004 18:03:27 +0000 Subject: [PATCH] honor checkall variable git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7488 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/search.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/search.php b/src/search.php index e486dad2..539ae1b7 100644 --- a/src/search.php +++ b/src/search.php @@ -934,6 +934,10 @@ sqgetGlobalVar('key', $key, SQ_COOKIE); sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION); +if ( sqgetGlobalVar('checkall', $temp, SQ_GET) ) { + $checkall = (int) $temp; +} + $search_button_html = _("Search"); $search_button_text = asearch_unhtmlentities($search_button_html); $add_criteria_button_html = _("Add New Criteria"); @@ -1388,4 +1392,4 @@ do_hook('search_bottom'); sqimap_logout($imapConnection); echo ''; -?> \ No newline at end of file +?> -- 2.25.1