Browse Source

fix file tree overwrite

main
ghost 9 months ago
parent
commit
5007565ccc
  1. 5
      src/Dokuwiki/Filesystem.php

5
src/Dokuwiki/Filesystem.php

@ -182,7 +182,10 @@ class Filesystem @@ -182,7 +182,10 @@ class Filesystem
{
case is_dir($file):
$this->_tree[$path] = [];
if (!isset($this->_tree[$path]))
{
$this->_tree[$path] = [];
}
$this->_index($file);

Loading…
Cancel
Save