From: Matthias Schmidt Date: Sun, 24 Feb 2019 15:31:18 +0000 (+0100) Subject: Fix double semicolon X-Git-Tag: 5.2.0_Alpha_1~268 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4036767d467b4d10bd29511e5f558abe837b665e;p=GitHub%2FWoltLab%2FWCF.git Fix double semicolon See 28d9ce543741bc4aca3f3e52a5c61cee28db0b46 --- diff --git a/wcfsetup/install/files/lib/system/form/builder/field/DateFormField.class.php b/wcfsetup/install/files/lib/system/form/builder/field/DateFormField.class.php index d2114db3bb..eea4b6dc53 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/DateFormField.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/field/DateFormField.class.php @@ -78,7 +78,7 @@ class DateFormField extends AbstractFormField implements IImmutableFormField, IN return null; } else { - return DateUtil::getDateTimeByTimestamp(0)->format($this->getSaveValueFormat());; + return DateUtil::getDateTimeByTimestamp(0)->format($this->getSaveValueFormat()); } }