From e970aa416260d7442713adaa8e0c023c87b468a7 Mon Sep 17 00:00:00 2001 From: stekkel Date: Thu, 4 Apr 2002 10:23:25 +0000 Subject: [PATCH] fix: initialize $where git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2677 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/search.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/search.php b/src/search.php index 4a4d0884..74faba44 100644 --- a/src/search.php +++ b/src/search.php @@ -328,6 +328,11 @@ echo ' '. if ( !isset( $what ) ) { $what = ''; } +if ( !isset( $where ) ) { + $where = ''; +} + + $what_disp = str_replace(',', ' ', $what); $what_disp = str_replace('\\\\', '\\', $what_disp); $what_disp = str_replace('\\"', '"', $what_disp); -- 2.25.1