From: philippe_mingo Date: Sun, 10 Feb 2002 09:02:35 +0000 (+0000) Subject: One more intl. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f8a2d9ee33720b6b6e9740b5fae67bb03490ab00;p=squirrelmail.git One more intl. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2406 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- 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++;