diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-05-03 11:53:59 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2004-05-03 11:53:59 +0000 |
commit | 0f1f45c710e8b92ae76a119784ff6906a6a7ed19 (patch) | |
tree | 3706c3fad064a4333f883536fb9395fbe896e509 | |
parent | 3c604109dc76e8174f6f47fbf9b308713285a503 (diff) | |
download | brdo-0f1f45c710e8b92ae76a119784ff6906a6a7ed19.tar.gz brdo-0f1f45c710e8b92ae76a119784ff6906a6a7ed19.tar.bz2 |
Standard text/html HTTP Content-Type was not cached, causing encoding issues on some server configurations.
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index a469d1f00..2e2cf12d7 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1312,7 +1312,7 @@ include_once "includes/file.inc"; set_error_handler("error_handler"); // spit out the correct charset http header -header("Content-Type: text/html; charset=utf-8"); +drupal_set_header("Content-Type: text/html; charset=utf-8"); // initialize the _GET["q"] prior to loading the modules and invoking their 'init' hook: if (!empty($_GET["q"])) { |