X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ftwitapihelp.php;h=c5d503e11864cadd33f23dacaa6cafe4dec17302;hb=0625f18c8e29bd840546136abe9e869b145fc497;hp=5a35d84423d9cd874ce5412fbb74cb646f1c32de;hpb=3df358a9e98328de4d865b91a5900f834a1f195a;p=quix0rs-gnu-social.git diff --git a/actions/twitapihelp.php b/actions/twitapihelp.php index 5a35d84423..c5d503e118 100644 --- a/actions/twitapihelp.php +++ b/actions/twitapihelp.php @@ -28,25 +28,25 @@ class TwitapihelpAction extends TwitterapiAction { * Formats: xml, json */ function test($args, $apidata) { - global $xw; + parent::handle($args); + if ($apidata['content-type'] == 'xml') { - header('Content-Type: application/xml; charset=utf-8'); - common_start_xml(); + $this->init_document('xml'); common_element('ok', NULL, 'true'); - common_end_xml(); + $this->end_document('xml'); } elseif ($apidata['content-type'] == 'json') { - header('Content-Type: application/json; charset=utf-8'); + $this->init_document('json'); print '"ok"'; + $this->end_document('json'); } else { - common_user_error("API method not found!", $code=404); + common_user_error(_('API method not found!'), $code=404); } - exit(); + } function downtime_schedule($args, $apidata) { parent::handle($args); - common_server_error("API method under construction.", $code=501); - exit(); + common_server_error(_('API method under construction.'), $code=501); } - + } \ No newline at end of file