From ffcd9cc87946f531d1efeb0fa2f4eca7ad6f8e0f Mon Sep 17 00:00:00 2001 From: Mark Nelson Date: Tue, 23 Jul 2013 16:38:57 +0800 Subject: [PATCH] Corrected error messages regarding width and height for the image element --- element/image/lang/en/customcertelement_image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/element/image/lang/en/customcertelement_image.php b/element/image/lang/en/customcertelement_image.php index 615521a..d1d8b5f 100644 --- a/element/image/lang/en/customcertelement_image.php +++ b/element/image/lang/en/customcertelement_image.php @@ -25,8 +25,8 @@ $string['height'] = 'Height'; $string['height_help'] = 'Height of the image in the page. If equal to zero, it is automatically calculated.'; $string['image'] = 'Image'; -$string['invalidheight'] = 'The height has to be a valid number greater than 0.'; -$string['invalidwidth'] = 'The width has to be a valid number greater than 0.'; +$string['invalidheight'] = 'The height has to be a valid number greater than or equal to 0.'; +$string['invalidwidth'] = 'The width has to be a valid number greater than or equal to 0.'; $string['pluginname'] = 'Image'; $string['width'] = 'Width'; $string['width_help'] = 'Width of the image in the page. If equal to zero, it is automatically calculated.';