summaryrefslogtreecommitdiff
path: root/inc/ZipLib.class.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-07-28 10:40:48 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-07-28 10:40:48 +0200
commit3009a773c06e6e5d731c42b12ad82272f9706f03 (patch)
tree4e15ab478a04177de73ad9601842eee5c1be2162 /inc/ZipLib.class.php
parentf393a4eb51a5f8ed0e64f09f76cbafe57d7dcb57 (diff)
downloadrpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.gz
rpg-3009a773c06e6e5d731c42b12ad82272f9706f03.tar.bz2
replaced use of basename() with utf8_basename() FS#2015
Diffstat (limited to 'inc/ZipLib.class.php')
-rw-r--r--inc/ZipLib.class.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/ZipLib.class.php b/inc/ZipLib.class.php
index cf89a40a4..918d38579 100644
--- a/inc/ZipLib.class.php
+++ b/inc/ZipLib.class.php
@@ -52,8 +52,8 @@ class ZipLib {
$fn = $files[$i];
if(!in_Array(dirname($fn[0]),$this->dirs))
$this->add_Dir(dirname($fn[0]));
- if(basename($fn[0]))
- $ret[basename($fn[0])]=$this->add_File($fn[1],$fn[0],$compact);
+ if(utf8_basename($fn[0]))
+ $ret[utf8_basename($fn[0])]=$this->add_File($fn[1],$fn[0],$compact);
}
return $ret;
}