dmmuller
Results 1 - 1 of 1
bydmmuller, September 9, 2010
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!
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!
