diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-06-17 17:29:57 -0700 |
---|---|---|
committer | Zach Copley <zach@controlyourself.ca> | 2009-06-17 17:29:57 -0700 |
commit | b0591cd98219cf523d35884015ee9f82c2aa9e09 (patch) | |
tree | 6c4824467dc8eb4ef0cc3a2f736d2db3efdffc48 /lib/mailbox.php | |
parent | 4fc4c0a74bd08f568a55d65660ca2e5170165905 (diff) |
Make MailboxAction read only
Diffstat (limited to 'lib/mailbox.php')
-rw-r--r-- | lib/mailbox.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/mailbox.php b/lib/mailbox.php index b282ce368..f1f6e98c1 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; + } + } |