function privatemsg_user_insert in Privatemsg 7
Same name and namespace in other branches
- 7.2 privatemsg.module \privatemsg_user_insert()
Implements hook_user_insert().
File
- ./
privatemsg.module, line 1392 - Allows users to send private messages to other users.
Code
function privatemsg_user_insert(&$edit, $account, $category) {
// Insert and update run the same code.
privatemsg_user_update($edit, $account, $category);
}