summaryrefslogtreecommitdiff
path: root/ikiwiki.pl
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-27 20:25:05 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-08-27 20:25:05 +0000
commit4ad7c9d6257ca106b2949d22f6300823190991a0 (patch)
tree9752444cfa70b40ab32627e3feb44781e56f2771 /ikiwiki.pl
parent3ad4d93e33284ad6d51d2fa5f9abf1943b894d48 (diff)
* 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-xikiwiki.pl1
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]/;
},