From 9f3788e2a2126083ca3f91aa0fe8c35c9db1b81e Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 19 Mar 2008 21:12:18 -0400 Subject: [PATCH] optimisation, only load openid module when signing in This makes the CGI about .2 seconds faster when editing pages etc. --- IkiWiki/Plugin/openid.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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"); -- 2.44.0