summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-08-02 10:22:45 +0000
committerDries Buytaert <dries@buytaert.net>2007-08-02 10:22:45 +0000
commitbf7a70f98c20187615bbd52123dd9ea9d5ecfbf3 (patch)
treeb06448328a412c5223318e20df4bb7fad536849f /modules
parent99de8bcb5004006dfbf9b964f3565616184c8195 (diff)
downloadbrdo-bf7a70f98c20187615bbd52123dd9ea9d5ecfbf3.tar.gz
brdo-bf7a70f98c20187615bbd52123dd9ea9d5ecfbf3.tar.bz2
- Patch #156553 by AjK: fixed E_NOTICE
Diffstat (limited to 'modules')
-rw-r--r--modules/user/user.module10
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) {