diff --git a/includes/form.inc b/includes/form.inc index 28055474f4d0c928410b5dc7e7eebb8b4b85d76b..4c95ce22a413035a2e8180c96d7d28e9b6c71896 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -521,6 +521,11 @@ function _form_validate($elements, $form_id = NULL) { form_error($elements, t('!name field is required.', array('!name' => $elements['#title']))); } + // Verify that the value is not longer than #maxlength. + if (isset($elements['#maxlength']) && drupal_strlen($elements['#value']) > $elements['#maxlength']) { + form_error($elements, t('!name cannot be longer than %max characters but is currently %length characters long.', array('!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title'], '%max' => $elements['#maxlength'], '%length' => drupal_strlen($elements['#value'])))); + } + // Add legal choice check if element has #options. Can be skipped, but then you must validate your own element. if (isset($elements['#options']) && isset($elements['#value']) && !isset($elements['#DANGEROUS_SKIP_CHECK'])) { if ($elements['#type'] == 'select') {