diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-04 10:15:35 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-04 10:15:35 -0400 |
commit | df09eba2fd3a3269f52fa45eb4c92b180ae8d777 (patch) | |
tree | 4cd71ec8d7aedced8aadbc5e7248bc30964bcfaf | |
parent | 1ad7ede08821b45bfed8e9ffd46515ab0c17f994 (diff) | |
download | ikiwiki-df09eba2fd3a3269f52fa45eb4c92b180ae8d777.tar ikiwiki-df09eba2fd3a3269f52fa45eb4c92b180ae8d777.tar.gz |
Fix cookiejar default setting.
-rw-r--r-- | IkiWiki.pm | 3 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 75c957932..87ddb1b56 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -515,9 +515,8 @@ sub getsetup () { }, cookiejar => { type => "string", - default => "$ENV{HOME}/.ikiwiki/cookies", + default => { file => "$ENV{HOME}/.ikiwiki/cookies" }, description => "cookie control", - example => { file => "$ENV{HOME}/.ikiwiki/cookies" }, safe => 0, # hooks into perl module internals rebuild => 0, }, diff --git a/debian/changelog b/debian/changelog index 8b62b0420..901154982 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ikiwiki (3.20130904.1) UNRELEASED; urgency=low + + * Fix cookiejar default setting. + + -- Joey Hess <joeyh@debian.org> Wed, 04 Sep 2013 10:14:16 -0400 + ikiwiki (3.20130904) unstable; urgency=low * calendar: Display the popup mouseover when there is only 1 page for a |