From 50075b161567f460bbea73c932c1a748dd3c7716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Mon, 27 Jun 2022 15:52:05 +0200 Subject: [PATCH] Fix mistake about the reason of the limitation of the timestamp in 32bit systems --- reference/forms/types/options/_date_limitation.rst.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/forms/types/options/_date_limitation.rst.inc b/reference/forms/types/options/_date_limitation.rst.inc index fc9a2731af7..4e5b1be4c87 100644 --- a/reference/forms/types/options/_date_limitation.rst.inc +++ b/reference/forms/types/options/_date_limitation.rst.inc @@ -1,7 +1,7 @@ .. caution:: If ``timestamp`` is used, ``DateType`` is limited to dates between - Fri, 13 Dec 1901 20:45:54 GMT and Tue, 19 Jan 2038 03:14:07 GMT on 32bit - systems. This is due to a `limitation in PHP itself`_. + Fri, 13 Dec 1901 20:45:54 UTC and Tue, 19 Jan 2038 03:14:07 UTC on 32bit + systems. This is due to an integer overflow bug in 32bit systems known as the `Year 2038 problem`_. -.. _limitation in PHP itself: https://www.php.net/manual/en/function.date.php#refsect1-function.date-changelog +.. _Year 2038 problem: https://en.wikipedia.org/wiki/Year_2038_problem