diff options
Diffstat (limited to 'modules/image/image.field.inc')
-rw-r--r-- | modules/image/image.field.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/image/image.field.inc b/modules/image/image.field.inc index c3ac1d561..857e72ba8 100644 --- a/modules/image/image.field.inc +++ b/modules/image/image.field.inc @@ -403,7 +403,8 @@ function image_field_widget_process($element, &$form_state, $form) { '#type' => 'textfield', '#default_value' => isset($item['alt']) ? $item['alt'] : '', '#description' => t('This text will be used by screen readers, search engines, or when the image cannot be loaded.'), - '#maxlength' => variable_get('image_alt_length', 80), // See http://www.gawds.org/show.php?contentid=28. + // @see http://www.gawds.org/show.php?contentid=28 + '#maxlength' => 128, '#weight' => -2, '#access' => (bool) $item['fid'] && $settings['alt_field'], ); @@ -412,7 +413,7 @@ function image_field_widget_process($element, &$form_state, $form) { '#title' => t('Title'), '#default_value' => isset($item['title']) ? $item['title'] : '', '#description' => t('The title is used as a tool tip when the user hovers the mouse over the image.'), - '#maxlength' => variable_get('image_title_length', 500), + '#maxlength' => 128, '#weight' => -1, '#access' => (bool) $item['fid'] && $settings['title_field'], ); |