summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-07-06 15:49:26 -0700
committerZach Copley <zach@controlyourself.ca>2009-07-06 15:49:26 -0700
commit91684830e55dd0e6a9e069ff140e17a929dd2364 (patch)
tree89cfa619aae98de2374821c1e2f289f6f2c0a69a
parent701a237e8ce8790804da25fe5aaf989d88a05fdf (diff)
fix bad function call
-rw-r--r--actions/twitapiusers.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapiusers.php b/actions/twitapiusers.php
index 0461efcb4..a47fdfbc3 100644
--- a/actions/twitapiusers.php
+++ b/actions/twitapiusers.php
@@ -45,7 +45,7 @@ class TwitapiusersAction extends TwitterapiAction
}
if (!$user) {
- $this->client_error(_('Not found.'), 404, $apidata['content-type']);
+ $this->clientError(_('Not found.'), 404, $apidata['content-type']);
return;
}