diff --git a/plugins/dynamix/include/FileTree.php b/plugins/dynamix/include/FileTree.php index 4b7bd416e..4f09c0955 100644 --- a/plugins/dynamix/include/FileTree.php +++ b/plugins/dynamix/include/FileTree.php @@ -63,7 +63,7 @@ if (is_low($rootdir) && is_dir($rootdir)) { foreach ($names as $file) if (is_file($rootdir.$file)) { $htmlRel = htmlspecialchars($rootdir.$file); $htmlName = htmlspecialchars($file); - $ext = mb_strtolower(pathinfo($file)['extension']?:''); + $ext = mb_strtolower(pathinfo($file)['extension']??''); foreach ($filters as $filter) if (empty($filter)||$ext==$filter) { if (empty($match)||preg_match("/$match/",$file)) echo "
  • $checkbox$htmlName
  • "; }