Ticket #1484991 (closed Bugs: fixed)

Opened 22 months ago

Last modified 22 months ago

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

Changed 22 months ago by alec

  • status changed from new to closed
  • resolution set to fixed
  • milestone set to 0.1.2

Fixed in r1311

Note: See TracTickets for help on using tickets.