From 50e0334a07e73984bc2b50f3bc0e21b3ed4b684e Mon Sep 17 00:00:00 2001 From: Mukunda Modell Date: Wed, 10 May 2017 16:43:21 -0500 Subject: [PATCH] Check for index to exist before accessing it. This fixes "Notice: Undefined index: quality ..." Bug: T164983 Change-Id: If72c40aeaf0ee5727e21f9fe4dac92c12436ce41 --- includes/media/Jpeg.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/media/Jpeg.php b/includes/media/Jpeg.php index 582269941b..29f0d7c606 100644 --- a/includes/media/Jpeg.php +++ b/includes/media/Jpeg.php @@ -205,7 +205,7 @@ class JpegHandler extends ExifBitmapHandler { // we'll also add TinyRGB profile to images lacking a profile, but // only if they're not low quality (which are meant to save bandwith // and we don't want to increase the filesize by adding a profile) - if ( $params['quality'] > 30 ) { + if ( isset( $params['quality'] ) && $params['quality'] > 30 ) { $profiles[] = '-'; } -- 2.20.1