comment out action => $q->request_uri setting, which is reporedly
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 2 Apr 2006 22:28:08 +0000 (22:28 +0000)
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>
Sun, 2 Apr 2006 22:28:08 +0000 (22:28 +0000)
unnecessary and doesn't work with old CGI.pm's (it's an undocumented
variable)

IkiWiki/CGI.pm

index b07e7fd642f3956604962505d62f02951af2be71..fa2287e82d4e20033076d259996f6097ae96575c 100644 (file)
@@ -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" : ""),