Files
Refbase2X/initialize/PhpErrorSettings.inc.php
2021-01-29 17:24:56 +01:00

9 lines
175 B
PHP

<?PHP
// produchtion
error_reporting(E_ERROR);
//developement
//error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
error_reporting(E_ERROR | E_WARNING | E_PARSE);
?>