Typo
authorJan Schneider <jan@horde.org>
Sat, 21 Nov 2009 13:06:21 +0000 (14:06 +0100)
committerJan Schneider <jan@horde.org>
Mon, 23 Nov 2009 10:27:40 +0000 (11:27 +0100)
framework/Auth/lib/Horde/Auth/Ipbasic.php

index 177b6e8..db3ba81 100644 (file)
@@ -56,7 +56,7 @@ class Horde_Auth_Ipbasic extends Horde_Auth_Base
     protected function _transparent()
     {
         if (!isset($_SERVER['REMOTE_ADDR'])) {
-            throw new Horde_Auth_Exception(_("IP Address not avaialble."));
+            throw new Horde_Auth_Exception(_("IP address not available."));
         }
 
         $client = $_SERVER['REMOTE_ADDR'];
@@ -66,7 +66,7 @@ class Horde_Auth_Ipbasic extends Horde_Auth_Base
             }
         }
 
-        throw new Horde_Auth_Exception(_("IP Address not within allowed CIDR block."));
+        throw new Horde_Auth_Exception(_("IP address not within allowed CIDR block."));
     }
 
     /**