diff --git a/reference/datetime/functions/date-default-timezone-get.xml b/reference/datetime/functions/date-default-timezone-get.xml
index a3ea1a4ad9..fea1c001ca 100644
--- a/reference/datetime/functions/date-default-timezone-get.xml
+++ b/reference/datetime/functions/date-default-timezone-get.xml
@@ -24,7 +24,8 @@
- Reading the TZ environment variable (if non empty) (Prior to PHP 5.3.0)
+ Prior to PHP 5.4.0 only: Reading the TZ
+ environment variable (if non empty)
@@ -35,7 +36,8 @@
- Querying the host operating system (if supported and allowed by the OS). This uses an algorithm
+ Prior to PHP 5.4.0 only: Querying the host operating system (if supported
+ and allowed by the OS). This uses an algorithm
that has to guess the timezone. This is by no means going to work correctly for
every situation. A warning is shown when this stage is reached. Do not rely on it to be guessed
correctly, and set date.timezone to the correct timezone
@@ -70,12 +72,19 @@
- 5.3.0
+ 5.4.0
The TZ environment variable is no longer used to
guess the timezone.
+
+ 5.4.0
+
+ The timezone is no longer guessed from information available through the
+ operating system as the guessed timezone can not be relied on.
+
+
diff --git a/reference/datetime/ini.xml b/reference/datetime/ini.xml
index d4f4401f9e..8469fc645b 100644
--- a/reference/datetime/ini.xml
+++ b/reference/datetime/ini.xml
@@ -111,10 +111,11 @@
- Prior to PHP 5.3.0, the default timezone used by all date/time functions
- if the TZ environment variable isn't set; this is
- longer the case as of 5.3.0. The precedence order is described in
- the date_default_timezone_get page. See TZ environment variable
+ was not set. The precedence order for which timezone is used if none
+ is explicitly mentioned is described in the
+ date_default_timezone_get page. See for a list of supported timezones.