diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-16 12:36:07 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-16 12:36:07 +0000 |
commit | 583104ce286c822b658937ea03a8b0981c82a474 (patch) | |
tree | 60450172995bf912c4e52d710d17cdb36138471e /modules/profile.module | |
parent | bf3dec3e0d58d62019f8e3bf1ba34d545781a40b (diff) | |
download | brdo-583104ce286c822b658937ea03a8b0981c82a474.tar.gz brdo-583104ce286c822b658937ea03a8b0981c82a474.tar.bz2 |
- Fixed typo: 'writeable' -> 'writable'
Diffstat (limited to 'modules/profile.module')
-rw-r--r-- | modules/profile.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/profile.module b/modules/profile.module index 5701ef112..c97deadbb 100644 --- a/modules/profile.module +++ b/modules/profile.module @@ -63,7 +63,7 @@ function profile_settings() { } $output .= "</table>\n"; - $output .= form_textfield(t("Avatar image path"), "profile_avatar_path", variable_get("profile_avatar_path", "misc/avatars/"), 30, 255, t("Path for avatar directory; it must be writeable and visible from the web.")); + $output .= form_textfield(t("Avatar image path"), "profile_avatar_path", variable_get("profile_avatar_path", "misc/avatars/"), 30, 255, t("Path for avatar directory; it must be writable and visible from the web.")); $output .= form_textfield(t("Avatar maximum dimensions"), "profile_avatar_dimensions", variable_get("profile_avatar_dimensions", "85x85"), 10, 10, t("Maximum dimensions for avatars.")); $output .= 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.")); @@ -281,4 +281,4 @@ function _profile_select($name, $value, $options, $extra = 0, $multiple = 0) { } } -?>
\ No newline at end of file +?> |