From 0ab893293dc3a652ed71a7dd9a082b323907bbf6 Mon Sep 17 00:00:00 2001 From: nehresma Date: Fri, 11 Feb 2000 22:56:15 +0000 Subject: [PATCH] fixed bug where empty trash wasn't showing up git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@211 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/left_main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/left_main.php b/src/left_main.php index 6172858a..8875cbdd 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -54,8 +54,8 @@ $line .= " ($numUnseen)"; } - if (($move_to_trash == true) && (trim($mailbox) == $trash_folder)) { - $urlMailbox = urlencode($mailbox); + if (($move_to_trash == true) && (trim($real_box) == $trash_folder)) { + $urlMailbox = urlencode($real_box); $line .= ""; $line .= "    (empty)"; $line .= "\n"; -- 2.25.1