1
Just had a few errors in IE concearning koivi editor. Probably also others will have these.
‘Function eregi() is deprecated’ in PHP 5.3.0? in class/xoopseditor/koivi/include/functions.inc.php line 93 - 109
Just change (example line 97)
if(eregi("opera",$_SERVER['HTTP_USER_AGENT']))
using preg_match with the ‘i’ modifier to
if(preg_match("/^opera/i",$_SERVER['HTTP_USER_AGENT']))
A list of
deprecated functions in php 5.30 here with alternative functions