blob: c8a80d347b287ddedbd60c363d702f8f927893c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-ak,v 1.2 2009/09/15 10:48:46 taca Exp $
* Output Content-Type header explicitly.
--- public_html/admin/install/configinfo.php.orig 2009-07-29 20:41:47.000000000 +0900
+++ public_html/admin/install/configinfo.php
@@ -90,6 +90,7 @@ foreach ($_CONF as $option => $value) {
}
$display .= "</table>\n</body>\n</html>";
+header('Content-Type: text/html; charset=' . COM_getCharset());
echo $display;
?>
|