diff options
author | Zach Copley <zach@status.net> | 2010-01-28 00:39:40 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-28 00:40:44 +0000 |
commit | 77aed28f17dbc3607502f1f47984661867d18f4f (patch) | |
tree | 0604aebadf6c12542a854d4e0117ba64e5a3961c /actions/apistatusnetversion.php | |
parent | 78079f34e273357d03ceee13269f9a388e66c4e3 (diff) |
These API methods should return true for ->isReadOnly($args)!
Diffstat (limited to 'actions/apistatusnetversion.php')
-rw-r--r-- | actions/apistatusnetversion.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/actions/apistatusnetversion.php b/actions/apistatusnetversion.php index 5109cd806..d09480759 100644 --- a/actions/apistatusnetversion.php +++ b/actions/apistatusnetversion.php @@ -98,5 +98,20 @@ class ApiStatusnetVersionAction extends ApiPrivateAuthAction } } + /** + * Return true if read only. + * + * MAY override + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + + function isReadOnly($args) + { + return true; + } + } |