openid: Fix handling of utf-8 nicknames.
parent
8ce1bea634
commit
dbb63cb7fd
|
@ -211,7 +211,8 @@ sub auth ($$) {
|
|||
}
|
||||
}
|
||||
if (defined $nickname) {
|
||||
$session->param(nickname => $nickname);
|
||||
$session->param(nickname =>
|
||||
Encode::decode_utf8($nickname));
|
||||
}
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -7,6 +7,7 @@ ikiwiki (3.20100705) UNRELEASED; urgency=low
|
|||
.ikiwiki/aggregatetime, to allow for more sophisticated cron jobs.
|
||||
* Add --changesetup mode that allows easily changing options in a
|
||||
setup file.
|
||||
* openid: Fix handling of utf-8 nicknames.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Mon, 05 Jul 2010 13:59:42 -0400
|
||||
|
||||
|
|
Loading…
Reference in New Issue