@@ -198,13 +198,13 @@ function theme_file_upload_help($variables) {
$descriptions[]=t('Images must be exactly !size pixels.',array('!size'=>'<strong>'.$max.'</strong>'));
}
elseif($min&&$max){
$descriptions[]=t('Images must be between !min and !max pixels.',array('!min'=>'<strong>'.$min.'</strong>','!max'=>'<strong>'.$max.'</strong>'));
$descriptions[]=t('Images must be larger than !min pixels. Images larger than !max pixels will be resized.',array('!min'=>'<strong>'.$min.'</strong>','!max'=>'<strong>'.$max.'</strong>'));
}
elseif($min){
$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>'));
$this->assertText(t('Images must be between 10x10 and 100x100 pixels.'),'Image widget allowed resolution displayed on article form.');
$this->assertText(t('Images must be larger than 10x10 pixels. Images larger than 100x100 pixels will be resized.'),'Image widget allowed resolution displayed on article form.');
// We have to create the article first and then edit it because the alt
// and title fields do not display until the image has been attached.