diff options
Diffstat (limited to 'actions/oembed.php')
-rw-r--r-- | actions/oembed.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/actions/oembed.php b/actions/oembed.php index 09d68a446..bef707f92 100644 --- a/actions/oembed.php +++ b/actions/oembed.php @@ -215,4 +215,15 @@ class OembedAction extends Action return; } + /** + * Is this action read-only? + * + * @param array $args other arguments + * + * @return boolean is read only action? + */ + function isReadOnly($args) + { + return true; + } } |