diff options
Diffstat (limited to 'actions/userbyid.php')
-rw-r--r-- | actions/userbyid.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/userbyid.php b/actions/userbyid.php index da61c7b6e..7b95d0725 100644 --- a/actions/userbyid.php +++ b/actions/userbyid.php @@ -24,11 +24,11 @@ class UserbyidAction extends Action { parent::handle($args); $id = $this->trimmed('id'); if (!$id) { - $this->client_error(_t('No id.')); + $this->client_error(_('No id.')); } $user =& User::staticGet($id); if (!$user) { - $this->client_error(_t('No such user.')); + $this->client_error(_('No such user.')); } $url=common_local_url('showstream', array('nickname' => $user->nickname)); |