Wrong usage of error_reporting
-
This plugin disables the error reporting in WP (with WP_DEBUG).
login-form-screen.php line 2:
error_reporting( 0 );This is very bad since it disables all error reporting, in other words it silences all relevant information for the developers. It took me a big amount of time to understand why i could not reproduce issues in my plugin and this is the reason. There might be other calls like this, they must be removed.
The topic ‘Wrong usage of error_reporting’ is closed to new replies.