diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 20:25:05 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-27 20:25:05 +0000 |
commit | 4ad7c9d6257ca106b2949d22f6300823190991a0 (patch) | |
tree | 9752444cfa70b40ab32627e3feb44781e56f2771 /ikiwiki.pl | |
parent | 3ad4d93e33284ad6d51d2fa5f9abf1943b894d48 (diff) | |
download | ikiwiki-4ad7c9d6257ca106b2949d22f6300823190991a0.tar ikiwiki-4ad7c9d6257ca106b2949d22f6300823190991a0.tar.gz |
* Patch from James Westby to add a --sslcookie switch, which forces
cookies to only be sent over ssl connections to avoid interception.
* Factor out the cgi header printing code into a new function.
* Fix preferences page on anonok wikis; still need to sign in to get
to the preferences page.
Diffstat (limited to 'ikiwiki.pl')
-rwxr-xr-x | ikiwiki.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ikiwiki.pl b/ikiwiki.pl index c9b53a031..aa0fd136a 100755 --- a/ikiwiki.pl +++ b/ikiwiki.pl @@ -45,6 +45,7 @@ sub getconfig () { #{{{ "svnpath" => \$config{svnpath}, "adminemail=s" => \$config{adminemail}, "timeformat=s" => \$config{timeformat}, + "sslcookie!" => \$config{sslcookie}, "exclude=s@" => sub { $config{wiki_file_prune_regexp}=qr/$config{wiki_file_prune_regexp}|$_[1]/; }, |