fix problems with german "Umlaut" in folder name

remotes/origin/stable6
Florin Peter 13 years ago
parent 1cfc9d269e
commit 85e0c78166
  1. 2
      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);

Loading…
Cancel
Save