From b421ac803e7bd580cca03b0db8db2899cd7620b1 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Tue, 28 Nov 2006 00:16:49 +0000 Subject: [PATCH] Woops, left a parameter off of the AuthPlugin default interface class. *embarrassed* --- includes/AuthPlugin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/AuthPlugin.php b/includes/AuthPlugin.php index 1d95541853..cf06e426c3 100644 --- a/includes/AuthPlugin.php +++ b/includes/AuthPlugin.php @@ -148,11 +148,12 @@ class AuthPlugin { * Set the given password in the authentication database. * Return true if successful. * + * @param $user User object. * @param $password String: password. * @return bool * @public */ - function setPassword( $password ) { + function setPassword( $user, $password ) { return true; } -- 2.20.1