From 4d3340452eeb478536001bba8bbd058fadc44f36 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Wed, 17 Jan 2001 03:40:55 +0000 Subject: [PATCH] fixed select all bug with spaces in folder name git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@951 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 7b71f9ed..f287d18c 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -400,9 +400,9 @@ echo "$More\n"; if (!$startMessage) $startMessage=1; if ( $checkall == "1") - echo "\n" . _("Unselect All") . "\n"; + echo "\n" . _("Unselect All") . "\n"; else - echo "\n" . _("Select All") . "\n"; + echo "\n" . _("Select All") . "\n"; echo ""; echo ""; @@ -438,9 +438,9 @@ echo "
"; echo "$More\n"; if ( $checkall == "1") - echo "\n" . _("Unselect All") . "\n"; + echo "\n" . _("Unselect All") . "\n"; else - echo "\n" . _("Select All") . "\n"; + echo "\n" . _("Select All") . "\n"; echo "
"; echo ""; -- 2.25.1