From 666a204d16013ae0e5f81028c6622ccfe12fb81d Mon Sep 17 00:00:00 2001 From: plegall Date: Thu, 17 Oct 2013 20:36:18 +0000 Subject: bug 2974: do not display deprecated errors on a stable branch git-svn-id: http://piwigo.org/svn/branches/2.5@24969 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/config_default.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 2e7a13688..37422e622 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -464,7 +464,7 @@ $conf['template_combine_files'] = true; // this permit to show the php errors reporting (see INI 'error_reporting' // for possible values) // gives an empty value '' to deactivate -$conf['show_php_errors'] = E_ALL; +$conf['show_php_errors'] = version_compare(PHP_VERSION, '5.3.0', '<') ? E_ALL : E_ALL ^ E_DEPRECATED; // enable log for i derivative script $conf['enable_i_log'] = false; -- cgit v1.2.3