diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-09-18 02:18:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-09-18 02:18:35 +0000 |
commit | 35e7c83ddb11302098d49979f5fb35c19673bda1 (patch) | |
tree | 765169c9dda1233e7f9abc968272c78651023744 /modules/user/user.module | |
parent | f94b014ca73a4e77bc7f31b8cf3adabb9c23bf7a (diff) | |
download | brdo-35e7c83ddb11302098d49979f5fb35c19673bda1.tar.gz brdo-35e7c83ddb11302098d49979f5fb35c19673bda1.tar.bz2 |
- Patch #914458 by Damien Tournoud, chx: remove the format delete reassignment 'feature'.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 1895b3fde..c1eae4fb8 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -3598,16 +3598,6 @@ function user_modules_uninstalled($modules) { } /** - * Implements hook_filter_format_delete(). - */ -function user_filter_format_delete($format, $fallback) { - db_update('users') - ->fields(array('signature_format' => $fallback->format)) - ->condition('signature_format', $format->format) - ->execute(); -} - -/** * Helper function to rewrite the destination to avoid redirecting to login page after login. * * Third-party authentication modules may use this function to determine the |