[UPDTAE 2.11 to 2.12] make sure to backup all of your files and your database before updating/replacing replace conf.php and edit or (now just for version checkings) # # ---- [ OPEN ] --------------- # conf.php # # ---- [ FIND ] --------------- # $version = "2.11"; # # ---- [ REPLACE LINE WITH ] --------------- # $version = "2.12"; # # ---- [ SAVE AND CLOSE ] --------------- +++++++++++++++++ + Please replace the following files or follow single steps below: +++++++++++++++++ functions.php includes/customers_actions.php includes/header.php +++++++++++++++++ + OR follow these steps to update the modified files: +++++++++++++++++ # # ---- [ OPEN ] --------------- # functions.php # # ---- [ FIND ] --------------- # list($arr["y"], $arr["m"], $arr["d"], $arr["h"], $arr["min"], $arr["sec"]) = split("[ :\-]", $date); # # ---- [ REPLACE WITH ] --------------- # list($arr["y"], $arr["m"], $arr["d"], $arr["h"], $arr["min"], $arr["sec"]) = preg_split("/[ :\-]/", $date); # # ---- [ FIND ] --------------- # $arr = split("[ :\-]", $date); # # ---- [ REPLACE WITH ] --------------- # $arr = preg_split("/[ :\-]/", $date); # # ---- [ OPEN ] --------------- # includes/customers_actions.php # # ---- [ FIND ] --------------- # if ($url && !eregi("^(http)",$url)) $url = "http://$url"; # # ---- [ REPLACE WITH ] --------------- # if ($url && !preg_match('/^http/i',$url)) $url = "http://$url"; # # ---- [ OPEN ] --------------- # includes/header.php # # ---- [ FIND ] --------------- # if (eregi($file,$_SERVER["HTTP_ACCEPT_LANGUAGE"]) && !$use_lang) $use_lang = $file; # # ---- [ REPLACE WITH ] --------------- # if (preg_match("/$file/i",$_SERVER["HTTP_ACCEPT_LANGUAGE"]) && !$use_lang) $use_lang = $file; # # ---- [ SAVE AND UPLOAD ] --------------- # EoM that's it