0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
setup
/
[
Home
]
File: error_reporting.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: error_reporting.php 53803 2015-02-06 00:42:50Z jyhem $ //this script may only be included - so its better to die if called directly. global $prefs, $tiki_p_admin; if (strpos($_SERVER['SCRIPT_NAME'], basename(__FILE__)) != FALSE) { header('location: index.php'); exit; } $smarty = TikiLib::lib('smarty'); if ( $prefs['error_reporting_adminonly'] == 'y' and $tiki_p_admin != 'y' ) { $errorReportingLevel = 0; } elseif ($prefs['error_reporting_level'] == 2047) { $errorReportingLevel = E_ALL & ~E_STRICT; } elseif ($prefs['error_reporting_level'] == 2039) { $errorReportingLevel = E_ALL & ~E_NOTICE; } elseif ($prefs['error_reporting_level'] == -1) { $errorReportingLevel = E_ALL | E_STRICT; // Play safe, as E_ALL did not include E_STRICT before PHP 5.4... } elseif ($prefs['error_reporting_level'] == 1) { $errorReportingLevel = error_reporting(); } else { $errorReportingLevel = $prefs['error_reporting_level']; } // Handle Smarty Notices if (!empty($prefs['smarty_notice_reporting']) and $prefs['smarty_notice_reporting'] === 'y' ) { $errorHandlerReportingLevel = $errorReportingLevel | E_NOTICE | E_USER_NOTICE ; } else { $errorHandlerReportingLevel = $errorReportingLevel | E_USER_NOTICE ; } set_error_handler('tiki_error_handling', $errorHandlerReportingLevel); error_reporting($errorReportingLevel); if ( $prefs['log_sql'] == 'y' && $api_tiki == 'adodb' ) { $dbTiki->LogSQL(); global $ADODB_PERF_MIN; $ADODB_PERF_MIN = $prefs['log_sql_perf_min']; } $tikifeedback = array(); // TODO: check this only once per session or only if a feature ask for it TikiSetup::check($tikidomain); if ( ! isset($phpErrors) ) $phpErrors = array(); $smarty->assign_by_ref('phpErrors', $phpErrors);