mirror of
https://github.com/e107inc/e107.git
synced 2025-08-03 13:17:24 +02:00
JS Minifier upgraded to 1.1.0 and PHP Warning Fix made.
This commit is contained in:
@@ -72,7 +72,7 @@ class Minifier
|
|||||||
*
|
*
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $options;
|
protected $options = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains the default options for minification. This array is merged with
|
* Contains the default options for minification. This array is merged with
|
||||||
@@ -537,7 +537,7 @@ class Minifier
|
|||||||
*/
|
*/
|
||||||
protected static function isAlphaNumeric($char)
|
protected static function isAlphaNumeric($char)
|
||||||
{
|
{
|
||||||
return preg_match('/^[\w\$]$/', $char) === 1 || $char == '/';
|
return preg_match('/^[\w\$\pL]$/', $char) === 1 || $char == '/';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user