summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2009-06-17 17:29:57 -0700
committerZach Copley <zach@controlyourself.ca>2009-06-17 17:29:57 -0700
commitb0591cd98219cf523d35884015ee9f82c2aa9e09 (patch)
tree6c4824467dc8eb4ef0cc3a2f736d2db3efdffc48 /lib
parent4fc4c0a74bd08f568a55d65660ca2e5170165905 (diff)
Make MailboxAction read only
Diffstat (limited to 'lib')
-rw-r--r--lib/mailbox.php13
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;
+ }
+
}