From: Joey Hess Date: Thu, 20 Mar 2008 01:12:18 +0000 (-0400) Subject: optimisation, only load openid module when signing in X-Git-Tag: 2.41~68 X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/9f3788e2a2126083ca3f91aa0fe8c35c9db1b81e optimisation, only load openid module when signing in This makes the CGI about .2 seconds faster when editing pages etc. --- diff --git a/IkiWiki/Plugin/openid.pm b/IkiWiki/Plugin/openid.pm index de31f38ee..10a8fa22f 100644 --- a/IkiWiki/Plugin/openid.pm +++ b/IkiWiki/Plugin/openid.pm @@ -27,15 +27,15 @@ sub formbuilder_setup (@) { #{{{ my $session=$params{session}; my $cgi=$params{cgi}; - # Give up if module is unavailable to avoid needing to depend on - # it. - eval q{use Net::OpenID::Consumer}; - if ($@) { - debug("unable to load Net::OpenID::Consumer, not enabling OpenID login"); - return; - } - if ($form->title eq "signin") { + # Give up if module is unavailable to avoid + # needing to depend on it. + eval q{use Net::OpenID::Consumer}; + if ($@) { + debug("unable to load Net::OpenID::Consumer, not enabling OpenID login"); + return; + } + # This avoids it displaying a redundant label for the # OpenID fieldset. $form->fieldsets("OpenID");