From f8a2d9ee33720b6b6e9740b5fae67bb03490ab00 Mon Sep 17 00:00:00 2001 From: philippe_mingo Date: Sun, 10 Feb 2002 09:02:35 +0000 Subject: [PATCH] One more intl. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2406 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_search.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/functions/imap_search.php b/functions/imap_search.php index 37205c86..b9264008 100644 --- a/functions/imap_search.php +++ b/functions/imap_search.php @@ -195,7 +195,12 @@ function sqimap_search($imapConnection,$search_where,$search_what,$mailbox,$colo -1, '' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . ''); } - echo '' . _("Folder:") . " $mailbox"; + if ( $mailbox == 'INBOX' ) { + $showbox = _("INBOX"); + } else { + $showbox = $mailbox; + } + echo '' . _("Folder:") . " $showbox"; while ($j < count($msgs)) { printMessageInfo($imapConnection, $msgs[$j]["ID"], 0, $j, $mailbox, '', 0, $search_where, $search_what); $j++; -- 2.25.1