From 8eaedb3d5ca36a35ea2ad32b129bb238c0b0963c Mon Sep 17 00:00:00 2001 From: Samuel Georges Date: Wed, 11 Feb 2015 20:40:48 +1100 Subject: [PATCH] Makes it easier to clear the cache --- modules/system/classes/CombineAssets.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/system/classes/CombineAssets.php b/modules/system/classes/CombineAssets.php index 4114464dd..b645bee27 100644 --- a/modules/system/classes/CombineAssets.php +++ b/modules/system/classes/CombineAssets.php @@ -171,7 +171,7 @@ class CombineAssets } $this->path = $cacheInfo['path']; - $this->storagePath = storage_path().'/cms/combiner'; + $this->storagePath = storage_path().'/cms/combiner/assets'; $combiner = $this->prepareCombiner($cacheInfo['files']); $contents = $combiner->dump(); @@ -278,7 +278,7 @@ class CombineAssets } $this->path = public_path().$path; - $this->storagePath = storage_path().'/cms/combiner'; + $this->storagePath = storage_path().'/cms/combiner/assets'; list($assets, $extension) = $this->prepareAssets($assets);