View Single Post
Old January 13th, 2006, 04:54 PM   #4 (permalink)
KW802
Registered User
Verified Customer
 
KW802's Avatar
 
Join Date: Nov 2005
Posts: 1,400
Quote:
Originally Posted by BrentWilson
Is it possible to remove the film strip display from files that have the extension of .wmv .mpg .mpeg .mp3 .wma .mov etc etc etc

The filmstrip serves no purpose in these situations
Familiar with PHP? If so, you want to change this query to select where extension is not equal to your list...
Quote:
$filmcache = array();
$getids = $db->query_read("
SELECT $votequery images.imageid, images.userid, images.thumbname, extension
FROM " . TABLE_PREFIX . "adv_gallery_images AS images
$favquery
WHERE " . implode(' AND ', $wherequery) . "
ORDER BY $doorderby $direction, images.imageid DESC
" . iif($limit, 'LIMIT ' . $limit)
);
KW802 is offline   Reply With Quote