From e5d31b2f1b68a46eddffe6e974bded1f0c606631 Mon Sep 17 00:00:00 2001 From: skodak Date: Thu, 5 Jul 2007 20:39:41 +0000 Subject: [PATCH] MDL-10355 fixed typo --- auth/pam/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.5