Warning is sufficient.
authorJan Schneider <jan@horde.org>
Tue, 9 Mar 2010 14:36:34 +0000 (15:36 +0100)
committerJan Schneider <jan@horde.org>
Tue, 9 Mar 2010 17:20:19 +0000 (18:20 +0100)
imp/lib/Auth.php
kronolith/index.php

index 166d9eb..4fe07b9 100644 (file)
@@ -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,
index 6ca35a5..77b7f7c 100644 (file)
@@ -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;