vBulletin 4.2.2
When in the Admin panel I get the following:
Warning: Function eregi() is deprecated in ..../adminpanel/forum.php(248) : eval()'d code on line 12
^ I get one Warning for every icon created, ie. I have 19 Warnings and have 19 custom Icons
----------------------------------------------------------------------------------------------------------------------------------
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)))
|