]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/CGI.pm
use same error string as template.pm does
[ikiwiki.git] / IkiWiki / CGI.pm
index cd4a5574ce9b9d1239b87a4329c41c4dc1871290..07369ac1076e748f8cd95e1aab5c2354a33877c8 100644 (file)
@@ -15,7 +15,8 @@ sub printheader ($) {
        if ($config{sslcookie}) {
                print $session->header(-charset => 'utf-8',
                        -cookie => $session->cookie(-httponly => 1, -secure => 1));
-       } else {
+       }
+       else {
                print $session->header(-charset => 'utf-8',
                        -cookie => $session->cookie(-httponly => 1));
        }
@@ -52,7 +53,7 @@ sub redirect ($$) {
 }
 
 sub decode_cgi_utf8 ($) {
-       # decode_form_utf8 method is needed for 5.10
+       # decode_form_utf8 method is needed for 5.01
        if ($] < 5.01) {
                my $cgi = shift;
                foreach my $f ($cgi->param) {