From 3716af20a2fbefced281cbdb01f68f729e7ca8a6 Mon Sep 17 00:00:00 2001 From: Jabed Bhuiyan Date: Mon, 14 Oct 2024 09:36:19 +0600 Subject: [PATCH] Dynamic Browser Tab Title Handling Based on File Context (#1202) * Update tinyfilemanager.php Now it will show the filename as browser tab title so that user can easily identify which file is opened on which tab. * Update tinyfilemanager.php remove lines 3722 and 3734 and add this directly in 3733 as per the suggestion of @ner00 * Update tinyfilemanager.php extra trailing space removed --- tinyfilemanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tinyfilemanager.php b/tinyfilemanager.php index 5cfe2aa2..d0da09b5 100644 --- a/tinyfilemanager.php +++ b/tinyfilemanager.php @@ -3817,7 +3817,7 @@ function fm_show_header() '; } ?> - <?php echo fm_enc(APP_TITLE) ?> + <?php echo isset($_GET['edit']) ? $_GET['edit'] : fm_enc(APP_TITLE); ?>