diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-12 21:25:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-12 21:25:42 +0000 |
commit | 2ff32224580139f021eed6ac2eff5b05bb709ff7 (patch) | |
tree | ea246281cdb009ee55c128405909f8a2d7643916 /modules/profile/profile.module | |
parent | e2b5cb38e333cfc3cba1428f3d6076a1e602507e (diff) | |
download | brdo-2ff32224580139f021eed6ac2eff5b05bb709ff7.tar.gz brdo-2ff32224580139f021eed6ac2eff5b05bb709ff7.tar.bz2 |
- Fixed translation bugs with statistics module. Patch by Gabor.
- Removed 'homepage' field from user table. Patch by Gabor.
- Added 'real name' field to the profile module. Patch by Gabor.
Diffstat (limited to 'modules/profile/profile.module')
-rw-r--r-- | modules/profile/profile.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index 6abf5b439..8a59cfe0b 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -9,6 +9,7 @@ function _profile_init() { */ $GLOBALS["profile_fields"] = array( + "realname" => array("textfield", t("Name"), "", 64, 64, ""), "address" => array("textfield", t("Address"), "", 64, 64, ""), "city" => array("textfield", t("City"), "", 64, 64, ""), "state" => array("textfield", t("State, province or region"), "", 64, 64, ""), |