Only send out Unicode headers if the current document is HTML, as indicated by a switch

develop
Sven Slootweg 12 years ago
parent f42d47d454
commit fe096eac5c

@ -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");

Loading…
Cancel
Save