function image_effect_scale_validate

Element validate handler to ensure that either a height or a width is specified.

1 string reference to 'image_effect_scale_validate'

File

drupal/core/modules/image/image.admin.inc, line 449
Administration pages for image settings.

Code

function image_effect_scale_validate($element, &$form_state) {
  if (empty($element['width']['#value']) && empty($element['height']['#value'])) {
    form_error($element, t('Width and height can not both be blank.'));
  }
}