X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapifriendshipsexists.php;h=21d82f96fd13f20fc41cf77bf247ccc12709d355;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=2f07b3ec7c665b8d147fa0a7e40481ca5052c5f9;hpb=5e47b1b2a07d8b300c511115ca018ece172a8505;p=quix0rs-gnu-social.git diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php index 2f07b3ec7c..21d82f96fd 100644 --- a/actions/apifriendshipsexists.php +++ b/actions/apifriendshipsexists.php @@ -29,9 +29,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } /** * Tests for the existence of friendship between two users. Will return true if @@ -57,7 +55,7 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction * * @return boolean success flag */ - function prepare(array $args=array()) + protected function prepare(array $args=array()) { parent::prepare($args); @@ -72,22 +70,18 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction * * Check the format and show the user info * - * @param array $args $_REQUEST data (unused) - * * @return void */ - function handle(array $args=array()) + protected function handle() { - parent::handle($args); + parent::handle(); if (empty($this->profile_a) || empty($this->profile_b)) { $this->clientError( // TRANS: Client error displayed when supplying invalid parameters to an API call checking if a friendship exists. _('Two valid IDs or nick names must be supplied.'), - 400, - $this->format + 400 ); - return; } $result = Subscription::exists($this->profile_a, $this->profile_b);