Quote:
Originally Posted by BirdOPrey5
Had a user who was getting an error on VB 425 / PHP 7. Turns out one of the functions in a plugin no longer exists on PHP7.
Easy fix. go to plugin Forum Category Icons [Forum Manager Edit]
FInd the code:
Code:
(eregi('\.(jpg|gif|png)$', $image)
Change it to
Code:
(preg_match('~\.(jpg|gif|png)$~i', $image)
Note the error was only noticeable when editing forums in forum manager (that I could tell.)
|
Thank you! I've recently updated my php version and experienced the "fCall to undefined function eregi()"-error when editing forums in the forum manager. It works fine now