diff options
author | zach <zach@copley.name> | 2008-07-22 14:29:19 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-22 14:29:19 -0400 |
commit | 877eb138c4a793cb065e9575e4f31469caf86b36 (patch) | |
tree | f432cf57955d014d6ac2a89a7562640edff2b07b /actions/twitapiaccount.php | |
parent | 038f762bce95323ac929b0635cceb7f9425527ec (diff) |
Twitter-compatible API: made is_readonly() method smarter
darcs-hash:20080722182919-ca946-dce04d84290711066154567458da2dd3253dd957.gz
Diffstat (limited to 'actions/twitapiaccount.php')
-rw-r--r-- | actions/twitapiaccount.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/actions/twitapiaccount.php b/actions/twitapiaccount.php index a43d1edba..0a57ad91c 100644 --- a/actions/twitapiaccount.php +++ b/actions/twitapiaccount.php @@ -24,7 +24,17 @@ require_once(INSTALLDIR.'/lib/twitterapi.php'); class TwitapiaccountAction extends TwitterapiAction { function is_readonly() { - return false; + + static $write_methods = array( 'update_location', + 'update_delivery_device'); + + $cmdtext = explode('.', $this->arg('method')); + + if (in_array($cmdtext[0], $write_methods)) { + return false; + } + + return true; } function verify_credentials($args, $apidata) { |