Quote:
Originally Posted by Slipperyduck
vBulletin 4.2.2
I'm assuming its the Plugin Template : Forum Category Icons [Forum Manager Edit]
if($image != ".." && $image != "." && $image != "lock.png" && (eregi('\.(jpg|gif|png)$', $image)))
^ where the eregi function is depreciated?
I've changed mine to the following and it seems to work (I'm assuming - don't see a problem yet):
if($image != ".." && $image != "." && $image != "lock.png" && (preg_match('/\.(jpg|gif|png)$/i', $image)))
|
Thank you, worked perfectly.