diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-20 17:43:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-20 17:43:03 +0000 |
commit | e57faf219274c3802fef3831be18f15961035b05 (patch) | |
tree | 9ab269050888eed8d42e9a2864c969732daab4a5 /modules/profile/profile.module | |
parent | 25081b2103d5a758876adc12ea097faabe153791 (diff) | |
download | brdo-e57faf219274c3802fef3831be18f15961035b05.tar.gz brdo-e57faf219274c3802fef3831be18f15961035b05.tar.bz2 |
- Bugfix: fixed problem with changing themes. Didn't apply Al's patch as
the fix was somewhat simpler. Fixes bug #2003.
- Bugfix: fixed problem with voting on certain poll pages. Patch #37 by Al.
- Improvement: removed stupid descriptions from profile module.
Diffstat (limited to 'modules/profile/profile.module')
-rw-r--r-- | modules/profile/profile.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module index e24d9fff6..1a6da5199 100644 --- a/modules/profile/profile.module +++ b/modules/profile/profile.module @@ -9,21 +9,21 @@ function _profile_init() { */ $GLOBALS["profile_fields"] = array( - "address" => array("textfield", t("Address"), "", 64, 64, t("Your address: street and number.")), - "city" => array("textfield", t("City"), "", 64, 64, t("Your city.")), + "address" => array("textfield", t("Address"), "", 64, 64, ""), + "city" => array("textfield", t("City"), "", 64, 64, ""), "state" => array("textfield", t("State, province or region"), "", 64, 64, ""), "zip" => array("textfield", t("Zip or postal code"), "", 7, 10, ""), "country" => array("textfield", t("Country"), "", 64, 64, ""), "birthday" => array("", t("Birthday"), ""), "gender" => array("select", t("Gender"), "", array(0 => "-", "m" => t("male"), "f" => t("female")), "", 0, 0), - "job" => array("textfield", t("Job title"), "", 64, 64, t("Your job title or position.")), + "job" => array("textfield", t("Job title"), "", 64, 64, ""), "icq" => array("textfield", t("ICQ messenger ID"), "", 12, 12, ""), "msn" => array("textfield", t("MSN messenger ID"), "", 64, 64, ""), "yahoo" => array("textfield", t("Yahoo messenger ID"), "", 64, 64, ""), "aim" => array("textfield", t("AIM messenger ID"), "", 64, 64, ""), "homepage" => array("textfield", t("URL of homepage"), "", 64, 64, t("Make sure you enter a fully qualified URL: remember to include \"http://\".")), "biography" => array("textarea", t("Biography"), "", 64, 4, ""), - "interests" => array("textarea", t("Interests"), "", 64, 4, t("What you like.")), + "interests" => array("textarea", t("Interests"), "", 64, 4, ""), "publickey" => array("textarea", t("Public key"), "", 64, 4, ""), "avatar" => array("", t("Avatar or picture"), t("Your virtual face or picture. Maximum dimensions are %dimensions and the maximum size is %size kB.", array("%dimensions" => variable_get("profile_avatar_dimensions", "85x85"), "%size" => variable_get("profile_avatar_file_size", "30")))) ); |