From c0f88082323b74d934c8c2d50666418bcd56b3c9 Mon Sep 17 00:00:00 2001 From: joey Date: Sat, 28 Jul 2007 21:01:56 +0000 Subject: * Various minor bug fixes for silly mistakes in the code, thanks to the various reviewers. --- IkiWiki/Plugin/aggregate.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'IkiWiki') diff --git a/IkiWiki/Plugin/aggregate.pm b/IkiWiki/Plugin/aggregate.pm index 9636c5f94..6f9c78075 100644 --- a/IkiWiki/Plugin/aggregate.pm +++ b/IkiWiki/Plugin/aggregate.pm @@ -128,8 +128,8 @@ my $state_loaded=0; sub loadstate () { #{{{ return if $state_loaded; if (-e "$config{wikistatedir}/aggregate") { - open (IN, "$config{wikistatedir}/aggregate" || - die "$config{wikistatedir}/aggregate: $!"); + open(IN, "$config{wikistatedir}/aggregate") || + die "$config{wikistatedir}/aggregate: $!"; while () { $_=IkiWiki::possibly_foolish_untaint($_); chomp; -- cgit v1.2.3