disable error reporting

This commit is contained in:
Serghey Rodin 2015-06-04 15:57:45 +03:00
commit c4b629bdd1
2 changed files with 2 additions and 0 deletions

View file

@ -1,6 +1,7 @@
<?php <?php
session_start(); session_start();
$TAB = 'IP'; $TAB = 'IP';
error_reporting(NULL);
// Main include // Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php"); include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");

View file

@ -1,6 +1,7 @@
<?php <?php
session_start(); session_start();
$TAB = 'WEB'; $TAB = 'WEB';
error_reporting(NULL);
// Main include // Main include
include($_SERVER['DOCUMENT_ROOT']."/inc/main.php"); include($_SERVER['DOCUMENT_ROOT']."/inc/main.php");