function watchdog_user in Drupal 5
Same name and namespace in other branches
- 4 modules/watchdog.module \watchdog_user()
Implementation of hook_user().
File
- modules/
watchdog/ watchdog.module, line 75 - System monitoring and logging for administrators.
Code
function watchdog_user($op, &$edit, &$user) {
if ($op == 'delete') {
db_query('UPDATE {watchdog} SET uid = 0 WHERE uid = %d', $user->uid);
}
}