From 6bc240dcaab767169572af1bc1eb24b1b01a9ca5 Mon Sep 17 00:00:00 2001 From: roundcube Date: Fri, 3 Mar 2006 16:34:35 +0000 Subject: Improved reading of POST and GET values git-svn-id: https://svn.roundcube.net/trunk@159 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_shared.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'roundcubemail/program/include/rcube_shared.inc') diff --git a/roundcubemail/program/include/rcube_shared.inc b/roundcubemail/program/include/rcube_shared.inc index da5665199..77753f5b4 100644 --- a/roundcubemail/program/include/rcube_shared.inc +++ b/roundcubemail/program/include/rcube_shared.inc @@ -108,7 +108,7 @@ class rcube_html_page // set default page title if (!strlen($this->title)) - $this->title = 'RoundCube|Mail'; + $this->title = 'RoundCube Mail'; // replace specialchars in content $__page_title = rep_specialchars_output($this->title, 'html', 'show', FALSE); @@ -117,7 +117,10 @@ class rcube_html_page // include meta tag with charset if (!empty($this->charset)) - $__page_header = ''."\n";; + { + header('Content-Type: text/html; charset='.$this->charset); + $__page_header = ''."\n"; + } // definition of the code to be placed in the document header and footer -- cgit v1.2.3