You are here

function user_register_notify_install in User registration notification 6

Same name and namespace in other branches
  1. 5 user_register_notify.install \user_register_notify_install()
  2. 7 user_register_notify.install \user_register_notify_install()

Implementation of hook_install().

File

./user_register_notify.install, line 12
Notifies administrator of new user registrations.

Code

function user_register_notify_install() {

  //  Set the weight of the module lower so modules like logintobogie don't cause problmes.
  db_query("UPDATE {system} SET weight = 1002 WHERE name = 'user_register_notify'");
}