From b92a33c51c87151412a2d75ef485f9d529fd9c33 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Wed, 30 Sep 2020 12:05:41 +0000 Subject: [PATCH] Fix #80164: Example says "see changelog" but there's no changelog That example refers to a changelog entry which stated that E_ALL is available as of PHP 5.4.0. Since the documenation does no longer document PHP 5, that referral has to be removed. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350716 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/errorfunc/functions/error-reporting.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/errorfunc/functions/error-reporting.xml b/reference/errorfunc/functions/error-reporting.xml index b68fda635d..6c7d10a50c 100644 --- a/reference/errorfunc/functions/error-reporting.xml +++ b/reference/errorfunc/functions/error-reporting.xml @@ -79,7 +79,7 @@ error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Report all errors except E_NOTICE error_reporting(E_ALL & ~E_NOTICE); -// Report all PHP errors (see changelog) +// Report all PHP errors error_reporting(E_ALL); // Report all PHP errors