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.)