summaryrefslogtreecommitdiff
path: root/actions/apiaccountverifycredentials.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/apiaccountverifycredentials.php
parent60b66bdd6e3bbc083aec6126b8583714dc24b94d (diff)
* i18n/L10n fixes.
* translator documentation updated. * superfluous whitespace removed.
Diffstat (limited to 'actions/apiaccountverifycredentials.php')
-rw-r--r--actions/apiaccountverifycredentials.php9
1 files changed, 2 insertions, 7 deletions
diff --git a/actions/apiaccountverifycredentials.php b/actions/apiaccountverifycredentials.php
index 79416e9b2..26d4e2fc5 100644
--- a/actions/apiaccountverifycredentials.php
+++ b/actions/apiaccountverifycredentials.php
@@ -48,10 +48,8 @@ require_once INSTALLDIR . '/lib/apiauth.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 ApiAccountVerifyCredentialsAction extends ApiAuthAction
{
-
/**
* Handle the request
*
@@ -61,12 +59,12 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
*
* @return void
*/
-
function handle($args)
{
parent::handle($args);
if (!in_array($this->format, array('xml', 'json'))) {
+ // TRANS: Client error displayed trying to execute an unknown API method verifying user credentials.
$this->clientError(_('API method not found.'), $code = 404);
return;
}
@@ -91,12 +89,9 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
* @param array $args other arguments
*
* @return boolean true
- *
- **/
-
+ */
function isReadOnly($args)
{
return true;
}
-
}