diff options
author | plegall <plg@piwigo.org> | 2009-12-09 23:34:57 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-12-09 23:34:57 +0000 |
commit | 56d09340805b19a4fda8af4e01b8141ecda63a0f (patch) | |
tree | 9a62b7bea5af52fc900133d8d93d2494570e0c57 /install.php | |
parent | 57db55318ad254446c6d3837e18bc302eb645bca (diff) |
merge r4462 from branch 2.0 to trunk
bug 1317 fixed: force the HTTP response charset (ie encoding) to UTF-8.
git-svn-id: http://piwigo.org/svn/trunk@4463 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 509269b88..f80290b0d 100644 --- a/install.php +++ b/install.php @@ -203,7 +203,7 @@ if (empty($step) || ($step != 3)) load_language('admin.lang', '', array('language' => $language, 'target_charset'=>'utf-8')); load_language('install.lang', '', array('language' => $language, 'target_charset'=>'utf-8')); } - +header('Content-Type: text/html; charset=UTF-8'); //------------------------------------------------- check php version if (version_compare(PHP_VERSION, REQUIRED_PHP_VERSION, '<')) { |