From 9fa2cf7c3a0d23d4d4357ff9e896e6ee96f73300 Mon Sep 17 00:00:00 2001 From: connor Date: Thu, 21 Mar 2024 09:58:42 +0100 Subject: [PATCH] changed return true. "as if the key is not there, it is like is has been removed successfully" --- lib/view/sfViewCacheManager.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/view/sfViewCacheManager.class.php b/lib/view/sfViewCacheManager.class.php index 73f417089..07eb7bb99 100644 --- a/lib/view/sfViewCacheManager.class.php +++ b/lib/view/sfViewCacheManager.class.php @@ -443,7 +443,7 @@ public function remove($internalUri, $hostName = '', $vary = '', $contextualPref return $this->cache->remove($cacheKey); } - return false; + return true; } /**