Issue #2563403 by sashi.kiran, jenlampton, albertski, Daniel_Rose: Changed help text on image fields to clarify that uploaded images which are too large will be resized rather than rejected
parent
a10a1cfc3f
commit
1c30c4186b
|
@ -1,6 +1,8 @@
|
|||
|
||||
Drupal 7.44, xxxx-xx-xx (development version)
|
||||
-----------------------
|
||||
- Changed help text on image fields to clarify that uploaded images which are
|
||||
too large will be resized rather than rejected (translatable string change).
|
||||
- Changed wording on the Update Manager settings page to clarify that the
|
||||
option to check for disabled module updates also applies to uninstalled
|
||||
modules (administrative-facing translatable string change).
|
||||
|
|
|
@ -965,7 +965,7 @@ function theme_file_upload_help($variables) {
|
|||
$descriptions[] = t('Images must be larger than !min pixels.', array('!min' => '<strong>' . $min . '</strong>'));
|
||||
}
|
||||
elseif ($max) {
|
||||
$descriptions[] = t('Images must be smaller than !max pixels.', array('!max' => '<strong>' . $max . '</strong>'));
|
||||
$descriptions[] = t('Images larger than !max pixels will be resized.', array('!max' => '<strong>' . $max . '</strong>'));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue