diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 6b27de57697ac1b7191d6c620d2775112f5c2c5e..e6e6e19fd0018f74d26777fac2bd181c9b0553e2 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,8 +1,6 @@ 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). diff --git a/modules/file/file.field.inc b/modules/file/file.field.inc index ceb18b61004d30cce0a004edf3830146bab1c22f..d592381bd56f7799bb37cbe852b196dae20ff503 100644 --- a/modules/file/file.field.inc +++ b/modules/file/file.field.inc @@ -965,7 +965,7 @@ function theme_file_upload_help($variables) { $descriptions[] = t('Images must be larger than !min pixels.', array('!min' => '' . $min . '')); } elseif ($max) { - $descriptions[] = t('Images larger than !max pixels will be resized.', array('!max' => '' . $max . '')); + $descriptions[] = t('Images must be smaller than !max pixels.', array('!max' => '' . $max . '')); } }