aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMaZderMind2015-11-14 13:05:24 +0100
committerMaZderMind2015-11-14 13:05:24 +0100
commit4faea446cd5cf1d1794b8b1a6779e2bb96816d0a (patch)
tree2d91a6d05d7aee2af0b8ee49d8b9bfed327d768c /lib
parenta84977ea039b24d3ba4449f4d5e19dcccb5bb36f (diff)
less.php: take relative-url into account when building the cache filename
this allows to compile the same file with different relative-urls with caching
Diffstat (limited to 'lib')
-rw-r--r--lib/less.php/Cache.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/less.php/Cache.php b/lib/less.php/Cache.php
index 8c8be39..bf5bf92 100644
--- a/lib/less.php/Cache.php
+++ b/lib/less.php/Cache.php
@@ -83,13 +83,12 @@ class Less_Cache{
$hash = md5(json_encode($less_files));
$list_file = Less_Cache::$cache_dir . Less_Cache::$prefix . $hash . '.list';
-
// check cached content
if( !isset($parser_options['use_cache']) || $parser_options['use_cache'] === true ){
if( file_exists($list_file) ){
self::ListFiles($list_file, $list, $cached_name);
- $compiled_name = self::CompiledName($list);
+ $compiled_name = self::CompiledName($list, $hash);
// if $cached_name is the same as the $compiled name, don't regenerate
if( !$cached_name || $cached_name === $compiled_name ){
@@ -109,7 +108,7 @@ class Less_Cache{
return false;
}
- $compiled_name = self::CompiledName( $less_files );
+ $compiled_name = self::CompiledName( $less_files, $hash );
$output_file = self::OutputFile($compiled_name, $parser_options );
@@ -194,7 +193,7 @@ class Less_Cache{
}
- private static function CompiledName( $files ){
+ private static function CompiledName( $files, $extrahash ){
//save the file list
$temp = array(Less_Version::cache_version);
@@ -202,7 +201,7 @@ class Less_Cache{
$temp[] = filemtime($file)."\t".filesize($file)."\t".$file;
}
- return Less_Cache::$prefix.sha1(json_encode($temp)).'.css';
+ return Less_Cache::$prefix.sha1(json_encode($temp).$extrahash).'.css';
}