diff options
author | Joey Hess <joey@kitenet.net> | 2011-03-21 16:40:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-03-21 16:40:11 -0400 |
commit | 5c8fb38623414a968916d4d938fdcd456aceb1e7 (patch) | |
tree | 1c57bc92fc5a8c8f143574d4bd714788409ac700 | |
parent | 6bf444af97bf93f91364ecc907c7f805b077c2da (diff) | |
download | ikiwiki-5c8fb38623414a968916d4d938fdcd456aceb1e7.tar ikiwiki-5c8fb38623414a968916d4d938fdcd456aceb1e7.tar.gz |
fix var name
-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 0ffe5d72a..e00116759 100644 --- a/IkiWiki/Plugin/aggregate.pm +++ b/IkiWiki/Plugin/aggregate.pm @@ -70,8 +70,8 @@ sub checkconfig () { if (! defined $config{aggregateinternal}) { $config{aggregateinternal}=1; } - if (! defined $config{cookies}) { - $config{cookies}={ file => "$ENV{HOME}/.ikiwiki/cookies" }; + if (! defined $config{cookiejar}) { + $config{cookiejar}={ file => "$ENV{HOME}/.ikiwiki/cookies" }; } # This is done here rather than in a refresh hook because it |