From: Zach Copley Date: Thu, 18 Jun 2009 00:29:57 +0000 (-0700) Subject: Make MailboxAction read only X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b0591cd98219cf523d35884015ee9f82c2aa9e09;p=quix0rs-gnu-social.git Make MailboxAction read only --- diff --git a/lib/mailbox.php b/lib/mailbox.php index b282ce3687..f1f6e98c19 100644 --- a/lib/mailbox.php +++ b/lib/mailbox.php @@ -295,4 +295,17 @@ class MailboxAction extends CurrentUserDesignAction return; } + /** + * Mailbox actions are read only + * + * @param array $args other arguments + * + * @return boolean + */ + + function isReadOnly($args) + { + return true; + } + }