You are here

function privatemsg_block_save in Privatemsg 7.2

Same name and namespace in other branches
  1. 7 privatemsg.module \privatemsg_block_save()

Implements hook_block_save().

File

./privatemsg.module, line 1565
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']);
  }
}