updated plugin W3 Total Cache
version 2.7.0
This commit is contained in:
@ -49,6 +49,9 @@ class Minify_CSS_Compressor {
|
||||
protected $_inHack = false;
|
||||
|
||||
|
||||
protected $_replacementHash = '';
|
||||
protected $_placeholders = array();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
|
@ -7,7 +7,12 @@ namespace W3TCL\Minify;
|
||||
*/
|
||||
|
||||
class Minify_Cache_File {
|
||||
|
||||
private $_path = null;
|
||||
private $_exclude = null;
|
||||
private $_locking = null;
|
||||
private $_flushTimeLimit = null;
|
||||
private $_flush_path = null;
|
||||
|
||||
public function __construct($path = '', $exclude = array(), $locking = false, $flushTimeLimit = 0, $flush_path = null) {
|
||||
if (! $path) {
|
||||
$path = self::tmp();
|
||||
@ -244,11 +249,6 @@ class Minify_Cache_File {
|
||||
return $this->_path;
|
||||
}
|
||||
|
||||
private $_path = null;
|
||||
private $_exclude = null;
|
||||
private $_locking = null;
|
||||
private $_flushTimeLimit = null;
|
||||
|
||||
/**
|
||||
* Returns size statistics about cache files
|
||||
*/
|
||||
|
@ -23,6 +23,11 @@ class Minify_HTML {
|
||||
* @var boolean
|
||||
*/
|
||||
protected $_jsCleanComments = true;
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $_html = '';
|
||||
|
||||
/**
|
||||
* "Minify" an HTML page
|
||||
|
Reference in New Issue
Block a user