diff --git a/base.php b/base.php index 9822bfb..1bc9758 100644 --- a/base.php +++ b/base.php @@ -32,7 +32,10 @@ $locale->Load($cphp_locale_name); setlocale(LC_ALL, $locale->locale); -header('Content-Type:text/html; charset=UTF-8'); +if(empty($not_html)) +{ + header("Content-Type:text/html; charset=UTF-8"); +} require("class.base.php"); require("class.databaserecord.php");