JF DV - 2016-09-24 15:39:00
//ORIGINAL, LINE 179
//if the image size is larger than size limit.
if(($this->_size > 0) && ( $this->_size > $this->_maxSize))
/*============================*/
Proper Comparison
//if the image size is smaller than size limit.
if(($this->_size > 0) && ( $this->_size < $this->_maxSize))