From: Marcel Werk Date: Mon, 3 Mar 2014 20:30:13 +0000 (+0100) Subject: Fixed typo X-Git-Tag: 2.0.4~37 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=3dae576d36c674d16a0c4f0be55eebb94ab262e6;p=GitHub%2FWoltLab%2FWCF.git Fixed typo Closes #1676 --- diff --git a/wcfsetup/install/files/lib/util/DateUtil.class.php b/wcfsetup/install/files/lib/util/DateUtil.class.php index b9b84e6494..496e58a1be 100644 --- a/wcfsetup/install/files/lib/util/DateUtil.class.php +++ b/wcfsetup/install/files/lib/util/DateUtil.class.php @@ -368,7 +368,7 @@ final class DateUtil { throw new SystemException("date '".$date."' is invalid"); } - // convert back to ISO-8601, if date was bogus (e.g. 2000-02-31) data() returns a different date than $date + // convert back to ISO-8601, if date was bogus (e.g. 2000-02-31) date() returns a different date than $date if (gmdate('Y-m-d', $time) != $date) { throw new SystemException("date '".$date."' is invalid"); }