OSC — PHP 5.3 — admin/categories.php Function eregi() is deprecated
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /data/site/nemcd.com/www/wp-content/plugins/wp-syntax/wp-syntax.php on line 380
Warning: WP_Syntax::substituteToken(): Argument #1 ($match) must be passed by reference, value given in /data/site/nemcd.com/www/wp-content/plugins/wp-syntax/wp-syntax.php on line 380
После перехода на PHP 5.3 пришлось править много мест для обновления OSCommerce
в admin/categories.php
// Ultimate SEO URLs v2.1
// If the action will affect the cache entries
# было if ( eregi("(insert|update|setflag)", $action) ) include_once('includes/reset_seo_cache.php'); |
# стало if ( preg_match("/(insert|update|setflag)/i", $action) ) include_once('includes/reset_seo_cache.php'); |