]> git.deb.at Git - pkg/blosxom.git/commitdiff
Avoid "conditional and" for running plugins "foot"
authorBarijaona Ramaholimihaso <barijaona@users.sourceforge.net>
Sat, 22 Sep 2007 06:22:43 +0000 (06:22 +0000)
committerBarijaona Ramaholimihaso <barijaona@users.sourceforge.net>
Sat, 22 Sep 2007 06:22:43 +0000 (06:22 +0000)
blosxom.cgi

index 7dba6352befb8dedb882a345f02c3a17c7eda7c2..3138fcc7e24a6918edbeddb9505bbc3d4c2bbed8 100755 (executable)
@@ -528,7 +528,11 @@ sub generate {
     my $foot = (&$template($currentdir,'foot',$flavour));
   
     # Plugins: Foot
-    foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('foot') and $entries = $plugin->foot($currentdir, \$foot) }
+    foreach my $plugin (@plugins) {
+        if ( $plugins{$plugin} > 0 and $plugin->can('foot') ) {
+            $entries = $plugin->foot( $currentdir, \$foot );
+        }
+    }
   
     $foot = &$interpolate($foot);
     $output .= $foot;