function privatemsg_block_save in Privatemsg 7
Same name and namespace in other branches
- 7.2 privatemsg.module \privatemsg_block_save()
Implements hook_block_save().
File
- ./
privatemsg.module, line 1505 - Allows users to send private messages to other users.
Code
function privatemsg_block_save($delta = '', $edit = array()) {
if ($delta == 'privatemsg-new') {
variable_set('privatemsg_no_messages_notification', $edit['notification']);
}
}