Aleksander Machniak
2012-06-06 eede5101cda06c5f64ddbdc3cd71e8351eaabd2b
Fix default_charset handling
1 files modified
6 ■■■■■ changed files
program/include/rcube_mime.php 6 ●●●●● patch | view | raw | blame | history
program/include/rcube_mime.php
@@ -31,7 +31,7 @@
 */
class rcube_mime
{
    private static $default_charset = RCMAIL_CHARSET;
    private static $default_charset;
    /**
@@ -39,9 +39,7 @@
     */
    function __construct($default_charset = null)
    {
        if ($default_charset) {
            self::$default_charset = $default_charset;
        }
        self::$default_charset = $default_charset;
    }