From fa63ae9e973c7e41fb57ad72a974ff74daef8a60 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 22 Jul 2011 16:42:38 +0800 Subject: [PATCH] JsCompile.php --- JsCompile.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/JsCompile.php b/JsCompile.php index e7018952..573d5d4d 100644 --- a/JsCompile.php +++ b/JsCompile.php @@ -87,13 +87,13 @@ class Pman_Core_JsCompile extends Pman $output = md5(serialize($arfiles)) .'.js'; - if (!file_exists($output_path.'/_cached_/'.$output)) { - $this->pack($arfiles,$output_path.'/_cached_/'.$output); + if (!file_exists($output_path.'/_cache_/'.$output)) { + $this->pack($arfiles,$output_path.'/_cache_/'.$output); } if (file_exists($output_path.'/'.$output)) { - echo ''; + echo ''; return; } foreach($files as $f=>$t) { @@ -123,12 +123,12 @@ class Pman_Core_JsCompile extends Pman $output = md5(serialize($arfiles)) .'.css'; - if (!file_exists($output_path.'/_cached_/'.$output)) { - $this->packCssCore($arfiles,$output_path.'/_cached_/'.$output); + if (!file_exists($output_path.'/_cache_/'.$output)) { + $this->packCssCore($arfiles,$output_path.'/_cache_/'.$output); } if (file_exists($output_path.'/'.$output)) { - echo ''; + echo ''; return; } foreach($files as $f=>$t) { -- 2.39.2