X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/e34533d1a0e0fc90a669f7cb3c11cafc6b285b26..f1d77f81933b4e4c38780a1934ac6daaaf0a9b80:/IkiWiki/Plugin/emailauth.pm diff --git a/IkiWiki/Plugin/emailauth.pm b/IkiWiki/Plugin/emailauth.pm index 62c9fe877..3946ace03 100644 --- a/IkiWiki/Plugin/emailauth.pm +++ b/IkiWiki/Plugin/emailauth.pm @@ -8,7 +8,6 @@ use IkiWiki 3.00; sub import { hook(type => "getsetup", id => "emailauth", "call" => \&getsetup); - hook(type => "auth", id => "emailauth", call => \&auth); IkiWiki::loadplugin("loginselector"); IkiWiki::Plugin::loginselector::register_login_plugin( "emailauth", @@ -55,10 +54,4 @@ sub email_auth ($$$) { error "EMAIL AUTH"; } -sub auth ($$) { - # While this hook is not currently used, it needs to exist - # so ikiwiki knows that the wiki supports logins, and will - # enable the Preferences page. -} - 1