Correct a typo: Output is done through the application object, not the user prefs object...

This commit is contained in:
ian%hixie.ch 2002-05-06 23:05:08 +00:00
Родитель a4a4f3b0a9
Коммит 6e4c646189
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -454,9 +454,9 @@ sub cmdUserPrefsConfirmSet {
$app->input->getArgument('changeID'),
$app->input->getArgument('changePassword'),
0)) { # XXX
$self->output->userPrefsSuccess();
$app->output->userPrefsSuccess();
} else {
$self->output->userPrefsNotification([[$user->userID, 'change', 'accessDenied']]);
$app->output->userPrefsNotification([[$user->userID, 'change', 'accessDenied']]);
}
}