set required error_reporting just in case

This commit is contained in:
Andrew Dolgov 2007-03-04 14:02:47 +01:00
parent 12e895ee98
commit d65981e27f
5 changed files with 10 additions and 1 deletions

View File

@ -1,8 +1,9 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "sessions.php";
require_once "modules/backend-rpc.php";
/* if ($_GET["debug"]) {
define('DEFAULT_ERROR_LEVEL', E_ALL);
} else {

View File

@ -1,4 +1,6 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "sessions.php";
require_once "sanity_check.php";
require_once "functions.php";

View File

@ -1,4 +1,6 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "functions.php";
require_once "sessions.php";
require_once "sanity_check.php";

View File

@ -1,4 +1,6 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "functions.php";
require_once "sessions.php";
require_once "sanity_check.php";

View File

@ -1,4 +1,6 @@
<?php
error_reporting(E_ERROR | E_WARNING | E_PARSE);
require_once "sessions.php";
require_once "sanity_check.php";