i'm sorry for using the email, but i didn't find your bug tracker

there is a bug in incphp/query/search.php in the function getSearchParamsPG

replace

$val = trim(addslashes($val));

with

$val = trim($val);
if (!get_magic_quotes_gpc())
     {
         $val = addslashes($val);
     }


thanks


------------------------------------------------------------------------------
_______________________________________________
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users

Reply via email to