Ticket #1484991 (closed Bugs: fixed)
default_charset bug
| Reported by: | onlyis4u | Owned by: | |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.2-alpha |
| Component: | Core functionality | Version: | svn-trunk |
| Severity: | normal | Keywords: | charset |
| Cc: |
Description
I found a character-set bug from the source of roundcube.
The problem exists in program/include/rcube_imap.php, and it is also found in svn revision 1291.
Below is the erroneous code, and the patched code.
original code of 1291:
function set_charset($cs)
{
$this->default_charset = $ch;
}
patch code:
function set_charset($cs)
{
$this->default_charset = $cs;
}
Change History
Note: See
TracTickets for help on using
tickets.
