summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorEvan Prodromou <git@evanprodromou.name>2009-01-23 10:37:04 +0100
committerEvan Prodromou <git@evanprodromou.name>2009-01-23 10:37:04 +0100
commite566b8929b20903426a9ea24dc03b2a5c4bc68c1 (patch)
tree362d5a4aeeb40b8128d732150f56e694b5b93cf6 /actions
parent32c9c03cdc8a5f5d5bf1da1d33c5e557b644316d (diff)
These aren't readonly
Diffstat (limited to 'actions')
-rw-r--r--actions/accesstoken.php7
-rw-r--r--actions/grouplogo.php5
2 files changed, 1 insertions, 11 deletions
diff --git a/actions/accesstoken.php b/actions/accesstoken.php
index 6e91e6c18..77fdf6aef 100644
--- a/actions/accesstoken.php
+++ b/actions/accesstoken.php
@@ -50,7 +50,7 @@ class AccesstokenAction extends Action
* Class handler.
*
* @param array $args query arguments
- *
+ *
* @return boolean false if user doesn't exist
*/
function handle($args)
@@ -71,9 +71,4 @@ class AccesstokenAction extends Action
$this->serverError($e->getMessage());
}
}
-
- function isReadOnly()
- {
- return true;
- }
}
diff --git a/actions/grouplogo.php b/actions/grouplogo.php
index 496b5d260..393070d5d 100644
--- a/actions/grouplogo.php
+++ b/actions/grouplogo.php
@@ -508,9 +508,4 @@ class GrouplogoAction extends Action
$nav = new GroupNav($this, $this->group);
$nav->show();
}
-
- function isReadOnly()
- {
- return true;
- }
}