]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Output XML and JSON error msgs for API calls
authorZach Copley <zcopley@mekong.(none)>
Wed, 17 Jun 2009 21:32:36 +0000 (14:32 -0700)
committerZach Copley <zcopley@mekong.(none)>
Wed, 17 Jun 2009 21:32:36 +0000 (14:32 -0700)
lib/twitterapi.php

index 569bc6d7a21fb55194ea333b5ba4779967439bd2..269b60efc63eafb4fe180075376adaa45a3c93ac 100644 (file)
@@ -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;