API getVersion Fix -> Undefined variable: eTagMatches... (#2268)
see https://github.com/cakephp/cakephp/issues/12536
This commit is contained in:
parent
86b0e4ea18
commit
18850d8779
|
@ -1168,6 +1168,9 @@ class CakeResponse {
|
||||||
if ($modifiedSince) {
|
if ($modifiedSince) {
|
||||||
$timeMatches = strtotime($this->modified()) === strtotime($modifiedSince);
|
$timeMatches = strtotime($this->modified()) === strtotime($modifiedSince);
|
||||||
}
|
}
|
||||||
|
if (!isset($etagMatches, $timeMatches)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
$checks = compact('etagMatches', 'timeMatches');
|
$checks = compact('etagMatches', 'timeMatches');
|
||||||
if (empty($checks)) {
|
if (empty($checks)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue