Merge pull request #390 from frozeus/patch-1
Fix for: folders named "0" not displayed
This commit is contained in:
commit
912c10b5e9
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ class App {
|
||||||
$parts = explode("/", $rel_path);
|
$parts = explode("/", $rel_path);
|
||||||
$encoded_parts = array();
|
$encoded_parts = array();
|
||||||
foreach ($parts as $part) {
|
foreach ($parts as $part) {
|
||||||
if ($part) {
|
if ($part != "") {
|
||||||
$encoded_parts[] = rawurlencode($part);
|
$encoded_parts[] = rawurlencode($part);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue