summaryrefslogtreecommitdiff
path: root/actions/apifriendshipsexists.php
diff options
context:
space:
mode:
authorSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-25 23:51:00 +0200
committerSiebrand Mazeland <s.mazeland@xs4all.nl>2010-10-28 01:21:09 +0200
commita12474a99d0322123b1c8318dfa609d5d5392c7f (patch)
tree85e97c1475acd17cce415ff80848d518ab7e4be9 /actions/apifriendshipsexists.php
parent60b66bdd6e3bbc083aec6126b8583714dc24b94d (diff)
* i18n/L10n fixes.
* translator documentation updated. * superfluous whitespace removed.
Diffstat (limited to 'actions/apifriendshipsexists.php')
-rw-r--r--actions/apifriendshipsexists.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/actions/apifriendshipsexists.php b/actions/apifriendshipsexists.php
index 725178fd4..c8766633b 100644
--- a/actions/apifriendshipsexists.php
+++ b/actions/apifriendshipsexists.php
@@ -47,7 +47,6 @@ require_once INSTALLDIR . '/lib/apiprivateauth.php';
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
-
class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
{
var $profile_a = null;
@@ -59,9 +58,7 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
* @param array $args $_REQUEST args
*
* @return boolean success flag
- *
*/
-
function prepare($args)
{
parent::prepare($args);
@@ -81,13 +78,13 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
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 screen_names must be supplied.'),
400,
$this->format
@@ -122,10 +119,8 @@ class ApiFriendshipsExistsAction extends ApiPrivateAuthAction
*
* @return boolean is read only action?
*/
-
function isReadOnly($args)
{
return true;
}
-
}