aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-18 11:32:56 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-02-18 11:32:56 -0200
commitf1e819c4e3c002b61e8158ffe4c6d28ec6e4feb0 (patch)
tree7e60d3391a44c0b597d23f554b58d7252bf5f382
parent43635311c43229b70818ad78b9b1786640e4f440 (diff)
downloadoriginal-f1e819c4e3c002b61e8158ffe4c6d28ec6e4feb0.tar.gz
original-f1e819c4e3c002b61e8158ffe4c6d28ec6e4feb0.tar.bz2
Avoiding deprecation notices
-rw-r--r--www/inc/funkce.inc.php4
-rw-r--r--www/inc/l10nget.inc.php2
-rw-r--r--www/index.php2
3 files changed, 4 insertions, 4 deletions
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);
diff --git a/www/inc/l10nget.inc.php b/www/inc/l10nget.inc.php
index f04b18c..cdc3418 100644
--- a/www/inc/l10nget.inc.php
+++ b/www/inc/l10nget.inc.php
@@ -5,7 +5,7 @@ function get_lang_from_agent($accept) {
$acceptarr = explode("," , $accept);
foreach ($acceptarr as $lang) {
//get rid of trailing garbage
- $lang = ereg_replace("^(.*)\;.*","\\1", $lang);
+ $lang = preg_replace("/^(.*)\;.*/","\\1", $lang);
if (is_dir("l10n/$lang")) {
return $lang;
exit;
diff --git a/www/index.php b/www/index.php
index f99ab0d..5711b87 100644
--- a/www/index.php
+++ b/www/index.php
@@ -83,7 +83,7 @@ if (!$galerie) {
while ($file = $adr->Read()) {
// checking for inc is only really needed when gallery_dir == $root
// hopefully not many galleries will be named inc ;)
- if (is_dir("$gallery_dir/$file") && !ereg("\.", $file) && $file!="inc") {
+ if (is_dir("$gallery_dir/$file") && !preg_match("/\./", $file) && $file!="inc") {
// Use date file for gallery date if avaliable
// info.txt format described in README
readInfo("$root/$gallery_dir/$file/info.txt", $file);