From f1e819c4e3c002b61e8158ffe4c6d28ec6e4feb0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 18 Feb 2011 11:32:56 -0200 Subject: Avoiding deprecation notices --- www/inc/funkce.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'www/inc/funkce.inc.php') diff --git a/www/inc/funkce.inc.php b/www/inc/funkce.inc.php index 27e1dbd..368ea8e 100644 --- a/www/inc/funkce.inc.php +++ b/www/inc/funkce.inc.php @@ -39,7 +39,7 @@ function infoParse ($infofile) { $info_array = file($infofile); foreach ($info_array as $line) { - list($key,$value) = split("\|",$line); + list($key,$value) = preg_split("/\|/",$line); $result[$key]=$value; } return $result; @@ -57,7 +57,7 @@ function readInfo ($infofile, $file) { if (ereg("([0-9]{1,2})\.([0-9]{1,2})\.([0-9]{4})", $info_array["date"])) { // remain compatible - DD.MM.YYYY - list($day,$month,$year) = split("\.", $info_array["date"]); + list($day,$month,$year) = preg_split("/\./", $info_array["date"]); $year = rtrim($year); $month = rtrim($month); $day = rtrim($day); -- cgit v1.2.3