Skip to content
Snippets Groups Projects
Commit 1c30c418 authored by David Rothstein's avatar David Rothstein
Browse files

Issue #2563403 by sashi.kiran, jenlampton, albertski, Daniel_Rose: Changed...

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 a10a1cfc
No related branches found
No related tags found
No related merge requests found
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>'));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment