|
From: Florin C B. <ory...@us...> - 2014-05-04 22:36:17
|
Update of /cvsroot/mxbb/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv14289 Modified Files: common.php Log Message: default php 5.2+ error reporting Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -d -r1.119 -r1.120 *** common.php 28 Jun 2013 15:32:37 -0000 1.119 --- common.php 4 May 2014 22:36:14 -0000 1.120 *************** *** 33,40 **** @ini_set('display_errors', '1'); //@error_reporting(E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! //@error_reporting(E_ALL & ~E_NOTICE); //Default error reporting in PHP 5.2+ //@session_cache_expire (1440); //@set_time_limit (0); ! //include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output // ================================================================================ --- 33,40 ---- @ini_set('display_errors', '1'); //@error_reporting(E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables ! @error_reporting(E_ALL & ~E_NOTICE); //Default error reporting in PHP 5.2+ //@session_cache_expire (1440); //@set_time_limit (0); ! include($mx_root_path . 'modules/mx_shared/ErrorHandler/prepend.' . $phpEx); // For nice error output // ================================================================================ |