From d7d51de9210879cc0c0c6d056388b42b2ef894c1 Mon Sep 17 00:00:00 2001 From: Barijaona Ramaholimihaso Date: Sat, 22 Sep 2007 10:46:05 +0000 Subject: [PATCH] Avoid "conditional and" for running plugins "template" --- blosxom.cgi | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 { -- 2.30.2