From af516eebb0788bd2edda1e1173e87e8d130603ad Mon Sep 17 00:00:00 2001 From: Joe Date: Tue, 21 Aug 2018 15:29:48 -0400 Subject: [PATCH] Cleanup fix --- lib/Cake/Network/CakeResponse.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Cake/Network/CakeResponse.php b/lib/Cake/Network/CakeResponse.php index 63e827034..2b47f09b9 100644 --- a/lib/Cake/Network/CakeResponse.php +++ b/lib/Cake/Network/CakeResponse.php @@ -1165,7 +1165,6 @@ class CakeResponse { $etagMatches = $timeMatches = false; if ($responseTag = $this->etag()) { $etagMatches = in_array('*', $etags) || in_array($responseTag, $etags); - } else { } if ($modifiedSince) { $timeMatches = strtotime($this->modified()) === strtotime($modifiedSince);