Merge pull request #16874 from colemanw/contactCleanup
[civicrm-core.git] / CRM / Utils / Date.php
index 90e777750eb503ddd9292ae6eb196cf38247315d..9e4eac33ed88f7b4dde7c60a5e5a41c39c87f2df 100644 (file)
@@ -771,7 +771,7 @@ class CRM_Utils_Date {
       $now = self::isoToMysql($now);
     }
 
-    return (strtotime($mysqlDate) >= strtotime($now)) ? FALSE : TRUE;
+    return !(strtotime($mysqlDate) >= strtotime($now));
   }
 
   /**