diff --git a/tinyfilemanager.php b/tinyfilemanager.php index b8db409..2470511 100644 --- a/tinyfilemanager.php +++ b/tinyfilemanager.php @@ -430,7 +430,7 @@ if (isset($_SESSION[FM_SESSION_ID]['logged'], $auth_users[$_SESSION[FM_SESSION_I //search : get list of files from the current folder if(isset($_POST['type']) && $_POST['type']=="search") { - $dir = $_POST['path'] == "." ? '': $_POST['path']; + $dir = $_POST['path'] == "." ? '' : $_POST['path']; $response = scan(fm_clean_path($dir), $_POST['content']); echo json_encode($response); exit(); @@ -2131,7 +2131,7 @@ $tableTheme = (FM_THEME == "dark") ? "text-white bg-dark table-dark" : "bg-white } else { ?> - + '.fm_get_filesize($all_files_size).'' ?> '.$num_files.'' ?> '.$num_folders.'' ?> @@ -4039,7 +4039,7 @@ $isStickyNavBar = $sticky_navbar ? 'navbar-fixed' : 'navbar-normal';