From: Zach Copley Date: Sat, 27 Jun 2009 01:31:24 +0000 (-0700) Subject: Added readonly flag to FileAction just in case X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=96ba25c34bc03c5b72c13241a00e467a0585cd2a;p=quix0rs-gnu-social.git Added readonly flag to FileAction just in case --- diff --git a/actions/file.php b/actions/file.php index 271f57ab96..8310e48df1 100644 --- a/actions/file.php +++ b/actions/file.php @@ -56,5 +56,17 @@ class FileAction extends Action function handle() { common_redirect($this->filerec->url); } + + /** + * Is this action read-only? + * + * @return boolean true + */ + + function isReadOnly($args) + { + return true; + } + }