From: Amos Jeffries Date: Tue, 13 Jul 2010 22:40:01 +0000 (+1200) Subject: Typo in Joomla fix X-Git-Tag: SQUID_3_2_0_1~63 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=09707baa01c89babea2a63e8c04bc18e21a0d0ac;p=thirdparty%2Fsquid.git Typo in Joomla fix --- diff --git a/helpers/basic_auth/DB/basic_db_auth.pl.in b/helpers/basic_auth/DB/basic_db_auth.pl.in index 481961bedc..5581f6cc25 100644 --- a/helpers/basic_auth/DB/basic_db_auth.pl.in +++ b/helpers/basic_auth/DB/basic_db_auth.pl.in @@ -142,7 +142,7 @@ sub check_password($$) if ($isjoomla){ my $salt; my $key2; - ($key2,$salt) = plit (/:/, $key); + ($key2,$salt) = split (/:/, $key); return 1 if md5_hex($password.$salt).':'.$salt eq $key; } else{