You are here

function privatemsg_user_insert in Privatemsg 7.2

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

Implements hook_user_insert().

File

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