Fix dumb mistake -- changed function names partway through writing Nickname and forgot to update a couple places. :)

This commit is contained in:
Brion Vibber
2010-12-01 11:21:00 -08:00
parent 0410462c4b
commit f68d4e7d06
3 changed files with 4 additions and 4 deletions

View File

@@ -273,7 +273,7 @@ class FinishopenidloginAction extends Action
}
try {
$nickname = Nickname::validate($this->trimmed('newname'));
$nickname = Nickname::normalize($this->trimmed('newname'));
} catch (NicknameException $e) {
$this->showForm($e->getMessage());
return;