diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-07-28 21:01:56 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-07-28 21:01:56 +0000 |
commit | c0f88082323b74d934c8c2d50666418bcd56b3c9 (patch) | |
tree | 1c0749dd62dc2995713ff604742978747133d987 /IkiWiki | |
parent | 80d4d1d26de5da6416793a93d14c62d44ca064b2 (diff) | |
download | ikiwiki-c0f88082323b74d934c8c2d50666418bcd56b3c9.tar ikiwiki-c0f88082323b74d934c8c2d50666418bcd56b3c9.tar.gz |
* Various minor bug fixes for silly mistakes in the code, thanks to the
various reviewers.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/aggregate.pm | 4 |
1 files changed, 2 insertions, 2 deletions
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 (<IN>) { $_=IkiWiki::possibly_foolish_untaint($_); chomp; |