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

index 1ee05fa378cf355818e158014307e3d33231c2e3..f4666d06e90dc5b73121862d0336f6b495a804e6 100755 (executable)
@@ -390,7 +390,9 @@ sub generate {
   %files = %$files; %others = ref $others ? %$others : ();
 
   # Plugins: Filter
-  foreach my $plugin ( @plugins ) { $plugins{$plugin} > 0 and $plugin->can('filter') and $entries = $plugin->filter(\%files, \%others) }
+  foreach my $plugin ( @plugins ) {
+  if ($plugins{$plugin} > 0 and $plugin->can('filter')){ $entries = $plugin->filter(\%files, \%others); }
+  }
 
   my %f = %files;