From 7dc3b1ac70f1963be2f289e9d9f7cdac8c55b911 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Mon, 7 Dec 2009 19:34:44 +0100 Subject: [PATCH] IE6 gets traditional interface. --- kronolith/index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kronolith/index.php b/kronolith/index.php index e9ec93f48..5805863ec 100644 --- a/kronolith/index.php +++ b/kronolith/index.php @@ -9,7 +9,8 @@ require_once dirname(__FILE__) . '/lib/base.php'; /* Load traditional interface? */ -if (!$prefs->getValue('dynamic_view') || !$browser->hasFeature('xmlhttpreq')) { +if (!$prefs->getValue('dynamic_view') || !$browser->hasFeature('xmlhttpreq') || + ($browser->isBrowser('msie') && $browser->getMajor() <= 6)) { include KRONOLITH_BASE . '/' . $prefs->getValue('defaultview') . '.php'; exit; } -- 2.11.0