From: Jan Schneider Date: Tue, 9 Mar 2010 14:36:34 +0000 (+0100) Subject: Warning is sufficient. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=c21e43baaef2fee2c48f449d45bedbbce6048fa1;p=horde.git Warning is sufficient. --- diff --git a/imp/lib/Auth.php b/imp/lib/Auth.php index 166d9ebaa..4fe07b94f 100644 --- a/imp/lib/Auth.php +++ b/imp/lib/Auth.php @@ -476,7 +476,7 @@ class IMP_Auth ($GLOBALS['browser']->hasFeature('issafari') && ($GLOBALS['browser']->getMajor() < 2)))) { $sess['view'] = 'imp'; - $GLOBALS['notification']->push(_("Your browser is too old to display the dynamic mode. Using traditional mode instead."), 'horde.error'); + $GLOBALS['notification']->push(_("Your browser is too old to display the dynamic mode. Using traditional mode instead."), 'horde.warning'); } setcookie('default_imp_view', $sess['view'], time() + 30 * 86400, diff --git a/kronolith/index.php b/kronolith/index.php index 6ca35a512..77b7f7ca1 100644 --- a/kronolith/index.php +++ b/kronolith/index.php @@ -14,7 +14,7 @@ if (!$prefs->getValue('dynamic_view') || !$browser->hasFeature('xmlhttpreq') || ($browser->isBrowser('msie') && $browser->getMajor() < 7) || ($browser->hasFeature('issafari') && $browser->getMajor() < 2)) { if ($prefs->getValue('dynamic_view')) { - $notification->push(_("Your browser is too old to display the dynamic mode. Using traditional mode instead."), 'horde.error'); + $notification->push(_("Your browser is too old to display the dynamic mode. Using traditional mode instead."), 'horde.warning'); } include KRONOLITH_BASE . '/' . $prefs->getValue('defaultview') . '.php'; exit;