diff --git a/tinyfilemanager.php b/tinyfilemanager.php index efc3ce6..c4ada91 100644 --- a/tinyfilemanager.php +++ b/tinyfilemanager.php @@ -70,6 +70,9 @@ $root_url = ''; // $_SERVER['HTTP_HOST'].'/folder' $http_host = $_SERVER['HTTP_HOST']; +// Home URL. Link for Home Button. +$home_url = '?p='; + // input encoding for iconv $iconv_input_encoding = 'UTF-8'; @@ -3527,7 +3530,7 @@ class FM_Zipper_Tar */ function fm_show_nav_path($path) { - global $lang, $sticky_navbar, $editFile; + global $lang, $sticky_navbar, $editFile, $home_url; $isStickyNavBar = $sticky_navbar ? 'fixed-top' : ''; $getTheme = fm_get_theme(); $getTheme .= " navbar-light"; @@ -3546,7 +3549,7 @@ function fm_show_nav_path($path) "; + $root_url = ""; $sep = ' / '; if ($path != '') { $exploded = explode('/', $path);