From: Jan Schneider Date: Mon, 7 Dec 2009 18:34:44 +0000 (+0100) Subject: IE6 gets traditional interface. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=7dc3b1ac70f1963be2f289e9d9f7cdac8c55b911;p=horde.git IE6 gets traditional interface. --- 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; }