OSC — PHP 5.3 — admin/categories.php Function eregi() is deprecated
После перехода на 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'); |