1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-22 05:31:58 +02:00

JS Minifier upgraded to 1.1.0 and PHP Warning Fix made.

This commit is contained in:
Cameron 2016-02-08 12:08:57 -08:00
parent ce7d4ae66c
commit a2fef504a2

@ -72,7 +72,7 @@ class Minifier
*
* @var array
*/
protected $options;
protected $options = array();
/**
* Contains the default options for minification. This array is merged with
@ -537,7 +537,7 @@ class Minifier
*/
protected static function isAlphaNumeric($char)
{
return preg_match('/^[\w\$]$/', $char) === 1 || $char == '/';
return preg_match('/^[\w\$\pL]$/', $char) === 1 || $char == '/';
}
/**