From: Florin Peter Date: Wed, 22 May 2013 23:21:36 +0000 (+0200) Subject: fix problems with german "Umlaut" in folder name X-Git-Tag: v6.0.0alpha2~701^2~11 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=85e0c78166d45b0ef9d00b1fd2164e4969ee9b83;p=nextcloud-server.git fix problems with german "Umlaut" in folder name --- diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index a98953b42aa..b73e2e83fcc 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -114,7 +114,7 @@ class Scanner { $size = 0; if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { \OC_DB::beginTransaction(); - while ($file = readdir($dh)) { + while ($file = utf8_encode(readdir($dh))) { $child = ($path) ? $path . '/' . $file : $file; if (!$this->isIgnoredDir($file)) { $data = $this->scanFile($child, $recursive === self::SCAN_SHALLOW);