View Single Post
  #12  
Old 11-23-2010, 04:29 AM
  rogue's Avatar 
rogue rogue is offline
 

X-Adept
  
Join Date: Apr 2007
Location: Loveland, Ohio
Posts: 770
 

Default 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.
__________________
Richard Williams
Rogue Wave Limited

Initial Inventory Imports
Daily Inventory Updates
Daily Inventory Reports
Drop Ship Support
Order Export to Shipper/Supplier
Shopping Feeds That Work
Programming for X-Cart

richard@roguewavelimited.com
http://www.roguewavelimited.com
Reply With Quote