Re: Function eregi() is deprecated
you can turn off deprecation warnings in the php.ini file with this:
error_reporting = E_ALL & ~E_DEPRECATED
or you can put it in the xcart code (I don't know where though)
error_reporting(E_ALL & ~E_DEPRECATED);
search on php.net for more info.
|