* (bug 6929) Restore AutoAuthenticate hook

This commit is contained in:
Brion Vibber 2006-10-10 21:20:10 +00:00
parent 26ac68a5ac
commit c41d4fb0ee
2 changed files with 2 additions and 0 deletions

View 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 ==

View file

@ -121,6 +121,7 @@ class StubUser extends StubObject {
$user->setLoaded( true );
} else {
$user = User::loadFromSession();
wfRunHooks('AutoAuthenticate',array($user));
}
return $user;
}