diff options
Diffstat (limited to 'plugins/Minify/minify.php')
-rw-r--r-- | plugins/Minify/minify.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Minify/minify.php b/plugins/Minify/minify.php index 3e8f86f83..bac1df8e2 100644 --- a/plugins/Minify/minify.php +++ b/plugins/Minify/minify.php @@ -76,7 +76,7 @@ class MinifyAction extends Action $c = Cache::instance(); if (!empty($c)) { - $cacheKey = common_cache_key(MinifyPlugin::cacheKey . ':' . $this->file . '?v=' . empty($this->v)?'':$this->v); + $cacheKey = Cache::key(MinifyPlugin::cacheKey . ':' . $this->file . '?v=' . empty($this->v)?'':$this->v); $out = $c->get($cacheKey); } if(empty($out)) { |