
10-13-2013, 02:20 PM
|
 |
|
|
Join Date: Sep 2006
Location: MI, USA
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Slipperyduck
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)))
|
Yes, Thank you!
|