summaryrefslogtreecommitdiff
path: root/actions/api.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-04-14 14:29:51 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-04-14 14:29:51 -0400
commit41b247ac1ac1f7752f5449d772307d78a6102964 (patch)
treee7ae1be39846f6defae80b3fbe69f19cd04d620e /actions/api.php
parent4f966709e680048fa4c2631c33250bbaaff6cc71 (diff)
parent4684d34713a8057387750bc52802d0c0475ec926 (diff)
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions/api.php')
-rw-r--r--actions/api.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/actions/api.php b/actions/api.php
index c18d551b6..d2f0a2eff 100644
--- a/actions/api.php
+++ b/actions/api.php
@@ -134,8 +134,8 @@ class ApiAction extends Action
'favorites/favorites');
$fullname = "$this->api_action/$this->api_method";
-
- // If the site is "private", all API methods except laconica/config
+
+ // If the site is "private", all API methods except laconica/config
// need authentication
if (common_config('site', 'private')) {
return $fullname != 'laconica/config' || false;
@@ -180,11 +180,11 @@ class ApiAction extends Action
}
}
- function isReadOnly()
+ function isReadOnly($args)
{
- # NOTE: before handle(), can't use $this->arg
- $apiaction = $_REQUEST['apiaction'];
- $method = $_REQUEST['method'];
+ $apiaction = $args['apiaction'];
+ $method = $args['method'];
+
list($cmdtext, $fmt) = explode('.', $method);
static $write_methods = array(
@@ -207,5 +207,4 @@ class ApiAction extends Action
return false;
}
-
}