diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-04-02 22:28:08 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-04-02 22:28:08 +0000 |
commit | 5cdcec9f495de492b178e5380b8ce50ec0f9865d (patch) | |
tree | bd6efa1cf7ba63a4b964b371d626c03e76caf03b /IkiWiki | |
parent | c4e0e8c36c89fa26e76bb21dbdb8263ee88d5143 (diff) | |
download | ikiwiki-5cdcec9f495de492b178e5380b8ce50ec0f9865d.tar ikiwiki-5cdcec9f495de492b178e5380b8ce50ec0f9865d.tar.gz |
comment out action => $q->request_uri setting, which is reporedly
unnecessary and doesn't work with old CGI.pm's (it's an undocumented
variable)
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/CGI.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm index b07e7fd64..fa2287e82 100644 --- a/IkiWiki/CGI.pm +++ b/IkiWiki/CGI.pm @@ -63,7 +63,8 @@ sub cgi_signin ($$) { #{{{ required => 'NONE', javascript => 0, params => $q, - action => $q->request_uri, + # Why was this added? + #action => $q->request_uri, header => 0, template => (-e "$config{templatedir}/signin.tmpl" ? "$config{templatedir}/signin.tmpl" : ""), |