summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2007-01-11 03:16:50 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2007-01-11 03:16:50 +0000
commit8bd8a972829839f16a6234e7d93e7c6d9077f004 (patch)
tree567c00db4cd6479cf95fa6c4be010a98938c2bff
parenteb28074aa33f4768f84fe75ae2c3826f2dbe55af (diff)
downloadbrdo-8bd8a972829839f16a6234e7d93e7c6d9077f004.tar.gz
brdo-8bd8a972829839f16a6234e7d93e7c6d9077f004.tar.bz2
#108366: Fix type on profile help.
-rw-r--r--modules/profile/profile.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/profile/profile.module b/modules/profile/profile.module
index 35bf7e1ab..05ad71d1a 100644
--- a/modules/profile/profile.module
+++ b/modules/profile/profile.module
@@ -307,7 +307,7 @@ Unless you know what you are doing, it is highly recommended that you prefix the
function profile_field_form_validate($form_id, $form_values) {
// Validate the 'field name':
if (eregi('[^a-z0-9_-]', $form_values['name'])) {
- form_set_error('name', t('The specified form name contains one or more illegal characters. Spaces or any other special characters expect dash (-) and underscore (_) are not allowed.'));
+ form_set_error('name', t('The specified form name contains one or more illegal characters. Spaces or any other special characters except dash (-) and underscore (_) are not allowed.'));
}
if (in_array($form_values['name'], user_fields())) {