recent images stopdesign

when there is an in my case flv movie uploades the stopdesign theme shows an image not found mini thumbnail in the recnt images list.

I got rid of the 'thumbnbail not found' thumb doing this

`$check = substr_count($imageURL,"flv");

if ($check == 0) {

echo '

$image->getTitle() . '">image

$image->getCustomImage(null, 44.5, 33.5, null, null, null, null) .

'" width="44.5" height="33.5" alt="' . $image->getTitle() . "\"/>\n";

} else{;}`

but then it doesn't increment the foreach by one offcourse... and in case of 1 movie only 5 instead of 6 recent thums are shown..

any ideas?

Comments

  • `$image->getVideo()` will be `true` on video images. This is a better check since there are more suffixes than `flv`.

    What is really needed it a way to ask for specific types of images. I'll put a ticket into trac regarding this.
Sign In or Register to comment.