changed functions.inc.php
function directoryPath($string, $server) {
$stringArray = split("/",trim($string));
$level = count($stringArray);
if(trim($string)=='/') $level=1; // Do not show multiple slashes if we are in root level
$down = "";
$levelCount=0;
...