* (bug 6929) Restore AutoAuthenticate hook
authorBrion Vibber <brion@users.mediawiki.org>
Tue, 10 Oct 2006 21:20:10 +0000 (21:20 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Tue, 10 Oct 2006 21:20:10 +0000 (21:20 +0000)
RELEASE-NOTES
includes/StubObject.php

index bdd7636..aa2f834 100644 (file)
@@ -284,6 +284,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
 * (bug 7367) Hyphens sometimes erroneously appended to equations when not converted to PNG
 * Add "title" to the opensearch link to allow automatic adding of the search engine in Firefox 2
 * (bug 7537) Add php5 to $wgFileBlacklist
+* (bug 6929) Restore AutoAuthenticate hook
 
 
 == Languages updated ==
index 6a50e01..ed3b117 100644 (file)
@@ -121,6 +121,7 @@ class StubUser extends StubObject {
                        $user->setLoaded( true );
                } else {
                        $user = User::loadFromSession();
+                       wfRunHooks('AutoAuthenticate',array($user));
                }
                return $user;
        }