summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorDan Moore <dan@moore.cx>2009-06-04 17:57:03 -0400
committerDan Moore <dan@moore.cx>2009-06-04 17:57:03 -0400
commit6658e2a2ee9517bebd59cf69d7483e6eda691b4e (patch)
tree613fad8f4e37afab8b64d0ab790b3bce880c54f6 /actions
parent9e16b7d89b101d8dfebdb8bf22ea56e9b8731bdd (diff)
Handle the ways Twitter accepts passing the user in the query string.
Diffstat (limited to 'actions')
-rw-r--r--actions/api.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/api.php b/actions/api.php
index b25ba99f3..b8da852b5 100644
--- a/actions/api.php
+++ b/actions/api.php
@@ -144,8 +144,8 @@ class ApiAction extends Action
}
if (in_array($fullname, $bareauth)) {
- # bareauth: only needs auth if without an argument
- if ($this->api_arg) {
+ # bareauth: only needs auth if without an argument or query param specifying user
+ if ($this->api_arg || $this->arg('id') || is_numeric($this->arg('user_id')) || $this->arg('screen_name')) {
return false;
} else {
return true;