diff --git a/classes/external/php/jsmin.php b/classes/external/php/jsmin.php index b37bd697..4e289501 100644 --- a/classes/external/php/jsmin.php +++ b/classes/external/php/jsmin.php @@ -335,7 +335,7 @@ protected function get() return $c; } } - if (ord($c) >= self::ORD_SPACE || $c === "\n" || $c === null) { + if ($c === null || ord($c) >= self::ORD_SPACE || $c === "\n") { return $c; } if ($c === "\r") {