Summary | Error in impt\templates\folders\import.inc |
Queue | IMP |
Queue Version | 4.0.3 |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | |
Requester | ddibox (at) mail (dot) ru |
Created | 08/19/2005 (7341 days ago) |
Due | |
Updated | 08/19/2005 (7341 days ago) |
Assigned | |
Resolved | 08/19/2005 (7341 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ Error in impt\templates\folders\import.inc
Queue ⇒ IMP
<?php echo sprintf(_("Import mbox file %s into folder %s."),
' <input name="mbox_upload" type="file" size="30"
class="fixed" /> ','<b>' . $folder_list[0] . '</b>') ?>
It must have:
<?php echo sprintf(_("Import mbox file %s into folder %s."),
' <input name="mbox_upload" type="file" size="30"
class="fixed"/> ','<b>' .
String::convertCharset($folder_list[0],'UTF7-IMAP', NLS::getCharset())
. '</b>') ?>