diff options
Diffstat (limited to 'actions/all.php')
-rw-r--r-- | actions/all.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php index a8b08565a..c19440052 100644 --- a/actions/all.php +++ b/actions/all.php @@ -31,7 +31,7 @@ class AllAction extends StreamAction { $user = User::staticGet('nickname', $nickname); if (!$user) { - $this->no_such_user(); + $this->client_error(_t('No such user: ') . $nickname); return; } |