diff options
-rw-r--r-- | modules/user/user.module | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index b277d1f39..1ac25e4f0 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -537,6 +537,16 @@ function user_search($op = 'search', $keys = NULL, $skip_access_check = FALSE) { } /** + * Implementation of hook_elements(). + */ +function user_elements() { + return array( + 'user_profile_category' => array(), + 'user_profile_item' => array(), + ); +} + +/** * Implementation of hook_user(). */ function user_user($type, &$edit, &$account, $category = NULL) { |