Merge pull request #390 from frozeus/patch-1

Fix for: folders named "0" not displayed
This commit is contained in:
Lars Jung 2015-03-09 00:54:31 +01:00
commit 912c10b5e9

View file

@ -80,7 +80,7 @@ class App {
$parts = explode("/", $rel_path);
$encoded_parts = array();
foreach ($parts as $part) {
if ($part) {
if ($part != "") {
$encoded_parts[] = rawurlencode($part);
}
}