From e36dd797bf1a5aa2d6fe797b3e2b0dc5e8a6202d Mon Sep 17 00:00:00 2001 From: Wei Zhang Date: Tue, 27 Oct 2020 10:38:59 +0800 Subject: [PATCH] Replace slash with PHP constant Signed-off-by: Lee Wei Zhang --- libraries/vendor_config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/vendor_config.php b/libraries/vendor_config.php index 5855b97a0d..adf8811996 100644 --- a/libraries/vendor_config.php +++ b/libraries/vendor_config.php @@ -78,4 +78,4 @@ define('LOCALE_PATH', ROOT_PATH . 'locale' . DIRECTORY_SEPARATOR); /** * Define the cache directory for routing cache an other cache files */ -define('CACHE_DIR', ROOT_PATH . 'libraries/cache' . DIRECTORY_SEPARATOR); +define('CACHE_DIR', ROOT_PATH . 'libraries' . DIRECTORY_SEPARATOR . 'cache' . DIRECTORY_SEPARATOR);