The Joomla! Extensions Directory ™

dmmuller

Reviews(1)
 
Random background
Excellent module, easy to use and install. I did keep getting errors with the deprecated eregi function on line 57 of the helper.php file.

This is an easy fix simply replace this line:

if (eregi('jpg', $img) || eregi('png', $img) || eregi('gif', $img)

for this:

if (preg_match('/jpg/i', $img) || preg_match('/png/i', $img) || preg_match('/gif/i', $img)

Hope that helps!