From 507bb44301ff75182918278754835958878a0b0d Mon Sep 17 00:00:00 2001 From: Bryan Crowe Date: Tue, 29 Oct 2013 23:02:14 -0400 Subject: [PATCH] Update date comparisons to be strict in CakeTime --- lib/Cake/Utility/CakeTime.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/Cake/Utility/CakeTime.php b/lib/Cake/Utility/CakeTime.php index 08ce8d773..79f698ca4 100644 --- a/lib/Cake/Utility/CakeTime.php +++ b/lib/Cake/Utility/CakeTime.php @@ -514,7 +514,7 @@ class CakeTime { public static function isThisWeek($dateString, $timezone = null) { $timestamp = self::fromString($dateString, $timezone); $now = self::fromString('now', $timezone); - return date('W o', $timestamp) == date('W o', $now); + return date('W o', $timestamp) === date('W o', $now); } /** @@ -528,7 +528,7 @@ class CakeTime { public static function isThisMonth($dateString, $timezone = null) { $timestamp = self::fromString($dateString, $timezone); $now = self::fromString('now', $timezone); - return date('m Y', $timestamp) == date('m Y', $now); + return date('m Y', $timestamp) === date('m Y', $now); } /** @@ -542,7 +542,7 @@ class CakeTime { public static function isThisYear($dateString, $timezone = null) { $timestamp = self::fromString($dateString, $timezone); $now = self::fromString('now', $timezone); - return date('Y', $timestamp) == date('Y', $now); + return date('Y', $timestamp) === date('Y', $now); } /** @@ -556,7 +556,7 @@ class CakeTime { public static function wasYesterday($dateString, $timezone = null) { $timestamp = self::fromString($dateString, $timezone); $yesterday = self::fromString('yesterday', $timezone); - return date('Y-m-d', $timestamp) == date('Y-m-d', $yesterday); + return date('Y-m-d', $timestamp) === date('Y-m-d', $yesterday); } /** @@ -570,7 +570,7 @@ class CakeTime { public static function isTomorrow($dateString, $timezone = null) { $timestamp = self::fromString($dateString, $timezone); $tomorrow = self::fromString('tomorrow', $timezone); - return date('Y-m-d', $timestamp) == date('Y-m-d', $tomorrow); + return date('Y-m-d', $timestamp) === date('Y-m-d', $tomorrow); } /**