View Single Post
  #10  
Old 04-05-2003, 06:24 AM
 
guytje guytje is offline
 

Advanced Member
  
Join Date: Nov 2002
Posts: 50
 

Default fixed...

Well, this is what they did:

$ have replaces the following lines in customer/search.php:

================================
$tmp=strstr($QUERY_STRING, "XCARTSESSID=");
if (!empty($tmp))
$QUERY_STRING=ereg_replace("XCARTSESSID=([0-9a-zA-Z]*)", "", $QUERY_STRING);

if(!empty($QUERY_STRING)) {
================================

with the following one line:

if(isset($substring)) {

Am don't know what/how... but it works like a charm

Thanks still for the help.
Cheers,
Guy[/b]
Reply With Quote