--- phpMyEdit.class.php 2004-04-16 20:29:24.797955200 +0200 +++ phpMyEdit.class.error_report.php 2004-04-17 11:54:17.607003200 +0200 @@ -2870,7 +2870,7 @@ function phpMyEdit($opts) /* {{{ */ { // Set desirable error reporting level - $error_reporting = @error_reporting(E_ALL & ~E_NOTICE); + $error_reporting = error_reporting(E_ALL & ~E_NOTICE); // Instance class variables $this->hn = $opts['hn']; $this->un = $opts['un']; @@ -3003,7 +3003,7 @@ !isset($opts['execute']) && $opts['execute'] = 1; $opts['execute'] && $this->execute(); // Restore original error reporting level - @error_reporting($error_reporting); + error_reporting($error_reporting); } /* }}} */ }