Commit c2da0046 by Scott

Prevent browser content encoding error in PHP 5.3

Fixes #604.
parent a0a0d32e
......@@ -59,6 +59,8 @@ if (!function_exists('qa_install_db_fail_handler')) {
if (ob_get_level() > 0) {
// clears any current theme output to prevent broken design
ob_end_clean();
// prevents browser content encoding error
header('Content-Encoding: none');
}
$success = '';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment