Changeset 702 for trunk/forum/common.php
- Timestamp:
- Mar 31, 2010, 6:32:40 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/forum/common.php
r400 r702 3 3 * 4 4 * @package phpBB3 5 * @version $Id : common.php 8760 2008-08-15 19:46:51Z aptx$5 * @version $Id$ 6 6 * @copyright (c) 2005 phpBB Group 7 7 * @license http://opensource.org/licenses/gpl-license.php GNU Public License … … 20 20 $starttime = $starttime[1] + $starttime[0]; 21 21 22 // Report all errors, except notices 23 error_reporting(E_ALL ^ E_NOTICE); 22 // Report all errors, except notices and deprecation messages 23 if (!defined('E_DEPRECATED')) 24 { 25 define('E_DEPRECATED', 8192); 26 } 27 error_reporting(E_ALL ^ E_NOTICE ^ E_DEPRECATED); 24 28 25 29 /* … … 173 177 174 178 // Load Extensions 175 if (!empty($load_extensions)) 179 // dl() is deprecated and disabled by default as of PHP 5.3. 180 if (!empty($load_extensions) && function_exists('dl')) 176 181 { 177 182 $load_extensions = explode(',', $load_extensions);
Note:
See TracChangeset
for help on using the changeset viewer.