fix problems with german "Umlaut" in folder name

This commit is contained in:
Florin Peter 2013-05-23 01:21:36 +02:00
parent 1cfc9d269e
commit 85e0c78166

View file

@ -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);