diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-07-06 15:56:10 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-07-06 15:56:10 -0700 |
commit | 195ec6820bf0c7fa60bca0f112a2ff8f98345a3c (patch) | |
tree | 59ae2bf8a6bdaf43d19783ffc059b68c0b0b685b /actions/twitapiusers.php | |
parent | a9c1e665701d5f5f20940143aa413faaec1a8c78 (diff) |
fix bad function call
Conflicts:
actions/twitapiusers.php
Diffstat (limited to 'actions/twitapiusers.php')
-rw-r--r-- | actions/twitapiusers.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php index ee01c2a43..e9fcccbde 100644 --- a/actions/twitapiusers.php +++ b/actions/twitapiusers.php @@ -47,7 +47,7 @@ class TwitapiusersAction extends TwitterapiAction } if (empty($user)) { - $this->client_error(_('Not found.'), 404, $apidata['content-type']); + $this->clientError(_('Not found.'), 404, $apidata['content-type']); return; } |