diff options
author | thomascube <thomas@roundcube.net> | 2008-05-17 17:46:43 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-05-17 17:46:43 +0000 |
commit | 8fa58e72a333d753ec406d0725ac9c1b40ab6d9a (patch) | |
tree | a99d7187d1662ef4d9ee1d9bca77d5a3260227c8 /program/include/html.php | |
parent | e2f958ced1af82b6e1ce27454148e7b8065823f5 (diff) |
New class rcube_message representing a mail message; changed global $MESSAGE from array to object
Diffstat (limited to 'program/include/html.php')
-rw-r--r-- | program/include/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/html.php b/program/include/html.php index 6f602454c..d0ab97633 100644 --- a/program/include/html.php +++ b/program/include/html.php @@ -32,7 +32,7 @@ class html protected $allowed; protected $content; - protected static $common_attrib = array('id','class','style','title','align'); + public static $common_attrib = array('id','class','style','title','align'); public static $containers = array('div','span','p','h1','h2','h3','form','textarea'); public static $lc_tags = true; |