X Xon Well-known member Yesterday at 9:43 PM #1 Affected version 2.3.7 PHP: public function canResize($width, $height) { if (!$this->maxResizePixels === null) { return true; } I'm fairly sure this check is broken, as there is no value you can store into maxResizePixels that makes that branch return true.
PHP: public function canResize($width, $height) { if (!$this->maxResizePixels === null) { return true; } I'm fairly sure this check is broken, as there is no value you can store into maxResizePixels that makes that branch return true.