From: skodak Date: Thu, 5 Jul 2007 20:39:41 +0000 (+0000) Subject: MDL-10355 fixed typo X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=e5d31b2f1b68a46eddffe6e974bded1f0c606631;p=moodle.git MDL-10355 fixed typo --- diff --git a/auth/pam/auth.php b/auth/pam/auth.php index dbb2eb1cee..94a179eb29 100644 --- a/auth/pam/auth.php +++ b/auth/pam/auth.php @@ -68,7 +68,7 @@ class auth_plugin_pam extends auth_plugin_base { // call_time_pass_reference of errormessage is deprecated - throws warnings in multiauth //if (pam_auth($username, $password, &$errormessage)) { - if (pam_auth(stripslashes($username), strislashes($password))) { + if (pam_auth(stripslashes($username), stripslashes($password))) { return true; } else {