|
From: Adi S. <ad...@l3...> - 2002-05-24 10:42:00
|
Hi,
the saved queries weren't working for me.
I had to change the line
221 in query.php from:
$savedquerystring = ereg_replace('&savedqueryname=.*(&?)', "\\1",
$HTTP_SERVER_VARS['QUERY_STRING']);
to:
$savedquerystring = ereg_replace('&savedqueryname=.*(&?)', "\1",
$HTTP_SERVER_VARS['QUERY_STRING']);
notice the one missing \
Regards
Adi
|