Thread: Froogle Google
View Single Post
  #41  
Old 08-05-2003, 07:46 PM
 
cloud9 cloud9 is offline
 

Advanced Member
  
Join Date: Dec 2002
Posts: 43
 

Default

find:

Code:
$image_url = $http_location.'/image.php?productid='.$products[$key][productid];

replace with:

Code:
$image_url = ''; if ($products[$key][image_x] <> 0) { $image_url = $http_location.'/image.php?productid='.$products[$key][productid]; }
Reply With Quote