diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-17 21:40:52 +0000 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-17 21:40:52 +0000 |
commit | 164588ef0fd2c9c9f1858f1d21d6758356ce7885 (patch) | |
tree | 2e5d5c9cc8adf07a1d610728dbfa201756884640 /lib/twitterapi.php | |
parent | af4b18b1e2ef8aded26fc4788c571012da04d1cf (diff) | |
parent | cd1361fe960eb3afbbdb34b14061b8475dea60c8 (diff) |
Merge branch '0.8.x' into userdesign
Diffstat (limited to 'lib/twitterapi.php')
-rw-r--r-- | lib/twitterapi.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/twitterapi.php b/lib/twitterapi.php index 569bc6d7a..269b60efc 100644 --- a/lib/twitterapi.php +++ b/lib/twitterapi.php @@ -545,7 +545,7 @@ class TwitterapiAction extends Action $this->init_twitter_atom(); break; default: - $this->client_error(_('Not a supported data format.')); + $this->clientError(_('Not a supported data format.')); break; } @@ -573,13 +573,13 @@ class TwitterapiAction extends Action $this->end_twitter_rss(); break; default: - $this->client_error(_('Not a supported data format.')); + $this->clientError(_('Not a supported data format.')); break; } return; } - function client_error($msg, $code = 400, $content_type = 'json') + function clientError($msg, $code = 400, $content_type = 'json') { static $status = array(400 => 'Bad Request', @@ -666,7 +666,7 @@ class TwitterapiAction extends Action $this->show_json_objects($profile_array); break; default: - $this->client_error(_('Not a supported data format.')); + $this->clientError(_('Not a supported data format.')); return; } return; |