openid: Fix handling of utf-8 nicknames.

master
Joey Hess 2010-07-11 13:38:37 -04:00
parent 8ce1bea634
commit dbb63cb7fd
2 changed files with 3 additions and 1 deletions

View File

@ -211,7 +211,8 @@ sub auth ($$) {
}
}
if (defined $nickname) {
$session->param(nickname => $nickname);
$session->param(nickname =>
Encode::decode_utf8($nickname));
}
}
else {

1
debian/changelog vendored
View File

@ -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