Remove error reporting.

This commit is contained in:
Michal Čihař
2005-06-24 12:01:43 +00:00
parent c5a7c6662c
commit b8746b6e09
4 changed files with 4 additions and 9 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-06-24 Michal Čihař <michal@cihar.com>
* tbl_change.php, tbl_properties_links.php, libraries/export/sql.php:
Remove error reporting.
2005-06-24 Marc Delisle <lem9@users.sourceforge.net>
* db_operations.php: problem renaming a db

View File

@@ -1,7 +1,6 @@
<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
error_reporting(E_ALL);
/**
* Set of functions used to build SQL dumps of tables
*/

View File

@@ -1,7 +1,6 @@
<?php
/* $Id$ */
// vim: expandtab sw=4 ts=4 sts=4:
error_reporting(E_ALL);
/**
* Get the variables sent or posted to this script and displays the header

View File

@@ -3,13 +3,6 @@
// vim: expandtab sw=4 ts=4 sts=4:
/**
* Sets error reporting level
*/
// (removed to avoid path disclosure, not sure about why this was here)
// error_reporting(E_ALL);
// Check parameters
require_once('./libraries/common.lib.php');