diff options
author | thomascube <thomas@roundcube.net> | 2006-08-18 12:48:33 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-08-18 12:48:33 +0000 |
commit | 8d4bcda874962d81d9b1a86480538b40834d8040 (patch) | |
tree | 91d6a6cee9b1e06f38df2e814d64502d19a6470c /program/include/rcube_shared.inc | |
parent | 89406f36c20e4d785bfb35c68e87475329cfbaf5 (diff) |
Re-built message parsing (Bug #1327068)
Diffstat (limited to 'program/include/rcube_shared.inc')
-rw-r--r-- | program/include/rcube_shared.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcube_shared.inc b/program/include/rcube_shared.inc index eab175b65..768ae3f40 100644 --- a/program/include/rcube_shared.inc +++ b/program/include/rcube_shared.inc @@ -33,7 +33,7 @@ class rcube_html_page var $script_tag_file = "<script type=\"text/javascript\" src=\"%s%s\"></script>\n"; var $script_tag = "<script type=\"text/javascript\">\n<!--\n%s\n\n//-->\n</script>\n"; - var $default_template = "<html>\n<body></body>\n</html>"; + var $default_template = "<html>\n<head><title></title></head>\n<body></body>\n</html>"; var $title = ''; var $header = ''; @@ -116,7 +116,7 @@ class rcube_html_page function write($templ='', $base_path='') { $output = empty($templ) ? $this->default_template : trim($templ); - + // set default page title if (!strlen($this->title)) $this->title = 'RoundCube Mail'; |