diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-02-19 00:23:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-02-19 00:23:21 +0000 |
commit | acd8b039a3a59f94c7da0bdbd0a9aedec475b33d (patch) | |
tree | 9f059824ff97ced3e4f656166e08b7df2124c3c0 /modules | |
parent | 843a7cf3a55c619e954af1004dac8f94201c8ea5 (diff) | |
download | brdo-acd8b039a3a59f94c7da0bdbd0a9aedec475b33d.tar.gz brdo-acd8b039a3a59f94c7da0bdbd0a9aedec475b33d.tar.bz2 |
- Patch #1058762 by montesq: hook_user_delete doc has wrong order of operations
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/user.api.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/user/user.api.php b/modules/user/user.api.php index 17618e16f..423248577 100644 --- a/modules/user/user.api.php +++ b/modules/user/user.api.php @@ -34,9 +34,8 @@ function hook_user_load($users) { /** * Respond to user deletion. * - * This hook is invoked from user_delete_multiple() after the account has been - * removed from the user tables in the database, and before - * field_attach_delete() is called. + * This hook is invoked from user_delete_multiple() before field_attach_delete() + * is called and before users are actually removed from the database. * * Modules should additionally implement hook_user_cancel() to process stored * user data for other account cancellation methods. |