|
From: Verdon V. <ve...@us...> - 2008-08-11 14:54:06
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15426/class Modified Files: RDX_Forms.php Log Message: fixed bug 2046456 Index: RDX_Forms.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/class/RDX_Forms.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** RDX_Forms.php 26 Jul 2008 20:57:18 -0000 1.23 --- RDX_Forms.php 11 Aug 2008 14:54:08 -0000 1.24 *************** *** 273,277 **** /* unset the filters if a search is being done */ // if (isset($_REQUEST['search']) && $_REQUEST['clearFilters']) { ! if (isset($_REQUEST['search'])) { unset($_REQUEST['browseLetter']); unset($_REQUEST['locations']); --- 273,277 ---- /* unset the filters if a search is being done */ // if (isset($_REQUEST['search']) && $_REQUEST['clearFilters']) { ! if (isset($_REQUEST['search']) && !empty($_REQUEST['search'])) { unset($_REQUEST['browseLetter']); unset($_REQUEST['locations']); |