diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 11:23:06 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-22 11:23:06 -0400 |
commit | 785ea92bb7c9701eaf7f68e2d5621e53f5bce7f2 (patch) | |
tree | 63137ab132141ff40a52420ccd2c61cd3b5ac2c8 /actions/all.php | |
parent | acf562b3ddaa6fbe1727fe301a50f1e9b5f26fd2 (diff) |
better logic in profile settings, missing method in all
darcs-hash:20080622152306-34904-3d3ab7c02c33efac17d02692a10b4fee2fb013f1.gz
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; } |