]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
These aren't readonly
authorEvan Prodromou <git@evanprodromou.name>
Fri, 23 Jan 2009 09:37:04 +0000 (10:37 +0100)
committerEvan Prodromou <git@evanprodromou.name>
Fri, 23 Jan 2009 09:37:04 +0000 (10:37 +0100)
actions/accesstoken.php
actions/grouplogo.php

index 6e91e6c1830db5c713413f57ffe25e262d2f0431..77fdf6aefa7012ab120c2c624df8c8be78807aa4 100644 (file)
@@ -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;
-    }
 }
index 496b5d260bc61af9b56ce7aea90c7c8d7cacc8f3..393070d5dc99b30cba6642c27e9a1d57220b5c95 100644 (file)
@@ -508,9 +508,4 @@ class GrouplogoAction extends Action
         $nav = new GroupNav($this, $this->group);
         $nav->show();
     }
-
-    function isReadOnly()
-    {
-        return true;
-    }
 }