Make MailboxAction read only

This commit is contained in:
Zach Copley 2009-06-17 17:29:57 -07:00
parent 4fc4c0a74b
commit b0591cd982
1 changed files with 13 additions and 0 deletions

View File

@ -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;
}
}