summaryrefslogtreecommitdiff
path: root/modules/profile.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-02-07 16:59:34 +0000
committerDries Buytaert <dries@buytaert.net>2004-02-07 16:59:34 +0000
commite28bbf67397166b7256150301a1c4e931ea8314b (patch)
treed632581c73f3409a9efe92037b48ae5bdca525e4 /modules/profile.module
parent5a8129e0fbf762c9dc6891d574dac386e959c262 (diff)
downloadbrdo-e28bbf67397166b7256150301a1c4e931ea8314b.tar.gz
brdo-e28bbf67397166b7256150301a1c4e931ea8314b.tar.bz2
- Batch two with profile module improvements:
+ Reworked the 'account administration' page. + Fixed bug in the 'edit account' page. + Removed some dead code from the system.module.
Diffstat (limited to 'modules/profile.module')
-rw-r--r--modules/profile.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile.module b/modules/profile.module
index d74b75e12..638332016 100644
--- a/modules/profile.module
+++ b/modules/profile.module
@@ -75,7 +75,7 @@ function profile_settings() {
$row[$i][] = form_checkbox("", "profile_required_fields][", $key, in_array($key, $profile_required_fields));
$i++;
}
-
+
$avatar = form_textfield(t("Avatar image path"), "profile_avatar_path", variable_get("profile_avatar_path", "avatars"), 30, 255, t("Subdirectory in the directory '%dir' where avatars will be stored.", array('%dir' => variable_get('file_directory_path', 'files') . FILE_SEPARATOR)) . $error['profile_avatar_path']);
$avatar .= form_textfield(t("Avatar maximum dimensions"), "profile_avatar_dimensions", variable_get("profile_avatar_dimensions", "85x85"), 10, 10, t("Maximum dimensions for avatars."));
$avatar .= form_textfield(t("Avatar maximum file size"), "profile_avatar_file_size", variable_get("profile_avatar_file_size", "30"), 10, 10, t("Maximum file size for avatars, in kB."));