From a3331f00988d4fd7247ffa8a94d79db347049776 Mon Sep 17 00:00:00 2001 From: Christian Rank Date: Tue, 29 Oct 2013 22:18:34 +0100 Subject: [PATCH] Update casset.php $cache_path already contains the '/' in the end. --- classes/casset.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/casset.php b/classes/casset.php index 2e9e808..3204894 100644 --- a/classes/casset.php +++ b/classes/casset.php @@ -1170,7 +1170,7 @@ protected static function combine($type, $file_group, $minify, $inline) return $a['file']; }, $file_group)).($minify ? 'min' : '').$last_mod).'.'.$type; - $rel_filepath = static::$cache_path.'/'.$filename; + $rel_filepath = static::$cache_path.$filename; $abs_filepath = static::$root_path.$rel_filepath; $needs_update = (!file_exists($abs_filepath));