Просмотр поста

.
Screamer

qrobiK, в incfiles/head.php замени это:

if (stristr(core::$user_agent, "msie") && stristr(core::$user_agent, "windows")) {
    // Выдаем заголовки для Internet Explorer
    header("Cache-Control: no-store, no-cache, must-revalidate");
    header('Content-type: text/html; charset=UTF-8');
} else {
    // Выдаем заголовки для остальных браузеров
    header("Cache-Control: public");
    header('Content-type: application/xhtml+xml; charset=UTF-8');
}

На это:
if (stristr(core::$user_agent, "msie") && stristr(core::$user_agent, "windows")) {
    // Выдаем заголовки для Internet Explorer
    header("Cache-Control: no-store, no-cache, must-revalidate");
} else {
    // Выдаем заголовки для остальных браузеров
    header("Cache-Control: public");
}
header('Content-type: text/html; charset=UTF-8');