From bc92ca56ef6c51393d2782b7654eaa162dfc2e10 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Mon, 30 Jul 2012 07:20:56 -0400
Subject: [PATCH] Fixes after default->classic switch

---
 program/include/rcube_mime.php |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/program/include/rcube_mime.php b/program/include/rcube_mime.php
index 53655a9..e1f736a 100644
--- a/program/include/rcube_mime.php
+++ b/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;
     }
 
 

--
Gitblit v1.9.1