Woops, left a parameter off of the AuthPlugin default interface class. *embarrassed*
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 28 Nov 2006 00:16:49 +0000 (00:16 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 28 Nov 2006 00:16:49 +0000 (00:16 +0000)
includes/AuthPlugin.php

index 1d95541..cf06e42 100644 (file)
@@ -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;
        }