diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-13 09:05:18 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-13 09:06:36 +0200 |
commit | 4c7daf5ceaea1bc48eff117e1abe642d13445857 (patch) | |
tree | e9e1d7d8f5c105dc5e8c20f87f92b0dd80d0fd4a /program/steps | |
parent | d9588ff2282ec93945a8b6865ddb30c66504ec3b (diff) |
Fix lack of translation of special folders in some configurations (#1489799)
Diffstat (limited to 'program/steps')
-rw-r--r-- | program/steps/mail/func.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc index e93e2f600..d1ca2a6a4 100644 --- a/program/steps/mail/func.inc +++ b/program/steps/mail/func.inc @@ -127,7 +127,7 @@ if (empty($RCMAIL->action) || $RCMAIL->action == 'list') { 'copy', 'move', 'quota', 'replyall', 'replylist'); } - $pagetitle = $RCMAIL->localize_foldername($RCMAIL->storage->mod_folder($mbox_name), true); + $pagetitle = $RCMAIL->localize_foldername($mbox_name, true); $pagetitle = str_replace($delimiter, " \xC2\xBB ", $pagetitle); $OUTPUT->set_pagetitle($pagetitle); |