On 30/04/2010 13:12, Andrea Zagli wrote:
Thanks, I added this to the SVN.
> i'm sorry for using the email, but i didn't find your bug tracker
>
it's here:
http://svn.pmapper.net/trac/
you need a login account to create tickets, otherwise you will not see
the button "Create Ticket"
> there
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
-