Opened 5 years ago
Closed 5 years ago
#1484991 closed Bugs (fixed)
default_charset bug
| Reported by: | onlyis4u | Owned by: | |
|---|---|---|---|
| Priority: | 5 | Milestone: | 0.2-alpha |
| Component: | Core functionality | Version: | git-master |
| 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 (1)
comment:1 Changed 5 years ago by alec
- Milestone set to 0.1.2
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.

Fixed in [f94a801d]