From f55eb1e6934c2139c440c90679566e9d718db99f Mon Sep 17 00:00:00 2001 From: Franck Allimant Date: Mon, 21 Apr 2014 00:23:59 +0200 Subject: [PATCH] Using now THELIA_CACHE_DIR --- core/lib/Thelia/Command/CacheClear.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Thelia/Command/CacheClear.php b/core/lib/Thelia/Command/CacheClear.php index 70f6e2974..8351d0573 100644 --- a/core/lib/Thelia/Command/CacheClear.php +++ b/core/lib/Thelia/Command/CacheClear.php @@ -63,7 +63,7 @@ class CacheClear extends ContainerAwareCommand } if ($input->getOption('with-images')) { - $this->clearCache(THELIA_WEB_DIR . "cache", $output); + $this->clearCache(THELIA_CACHE_DIR, $output); } }