aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/utf-8_bug_in_websetup.pm.mdwn
blob: efa2c9ffe9f33e346ce09e25609cdf29e7f89316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[[!tag patch]]

I type chinese characters into the fields. After press "save setup" button the characters turn into gibberish.

I submit a patch that solve the problem for me.  --Lingo

----

    --- websetup.pm	2009-12-02 05:07:46.000000000 +0800
    +++ /usr/share/perl5/IkiWiki/Plugin/websetup.pm	2010-01-08 22:05:16.000000000 +0800
    @@ -308,7 +308,8 @@
     			$fields{$_}=$shown{$_} foreach keys %shown;
     		}
     	}
    -	
    +
    +	IkiWiki::decode_form_utf8($form);	
     	if ($form->submitted eq "Cancel") {
     		IkiWiki::redirect($cgi, $config{url});
     		return;