From: Jan Schneider Date: Sat, 21 Nov 2009 13:06:21 +0000 (+0100) Subject: Typo X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=e284934e097bc0a28edb2eddf5e665165b766055;p=horde.git Typo --- diff --git a/framework/Auth/lib/Horde/Auth/Ipbasic.php b/framework/Auth/lib/Horde/Auth/Ipbasic.php index 177b6e84c..db3ba812a 100644 --- a/framework/Auth/lib/Horde/Auth/Ipbasic.php +++ b/framework/Auth/lib/Horde/Auth/Ipbasic.php @@ -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.")); } /**