From: Barijaona Ramaholimihaso Date: Sat, 22 Sep 2007 10:46:05 +0000 (+0000) Subject: Avoid "conditional and" for running plugins "template" X-Git-Tag: v2_1_0~52 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fblosxom.git;a=commitdiff_plain;h=d7d51de9210879cc0c0c6d056388b42b2ef894c1 Avoid "conditional and" for running plugins "template" --- diff --git a/blosxom.cgi b/blosxom.cgi index ee085a3..0c483e9 100755 --- a/blosxom.cgi +++ b/blosxom.cgi @@ -258,7 +258,14 @@ shift @INC foreach @plugin_dirs; # Plugins: Template # Allow for the first encountered plugin::template subroutine to override the # default built-in template subroutine -my $tmp; foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('template') and defined($tmp = $plugin->template()) and $template = $tmp and last; } +foreach my $plugin (@plugins) { + if ( $plugins{$plugin} > 0 and $plugin->can('template') ) { + if ( my $tmp = $plugin->template() ) { + $template = $tmp; + last; + } + } +} # Provide backward compatibility for Blosxom < 2.0rc1 plug-ins sub load_template {