View Single Post
Old April 1st, 2005, 04:06 AM   #9 (permalink)
Pryce
Member
Verified Customer
 
Join Date: Aug 2004
Posts: 39
Re: image display and counter problem

For my slide shows to work I had to find

$image = $DB_site->query_first("SELECT title, description, userid, catid, filename, height, width, extension FROM " . TABLE_PREFIX . "adv_gallery_images WHERE imageid = '$imageid'");

in misc.php and change it to

$image = $DB_site->query_first("SELECT imageid, title, description, userid, catid, filename, height, width, extension FROM " . TABLE_PREFIX . "adv_gallery_images WHERE imageid = '$imageid'");
Pryce is offline