Skip to content
Snippets Groups Projects
Commit edb3178d authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Bad declaration of error_reporting

parent ead6b387
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ if (! defined('LOG_DEBUG'))
}
// Force PHP error_reporting setup (Dolibarr may report warning without this)
error_reporting(E_ALL ^ E_NOTICE ^ E_STRICT);
error_reporting(E_ALL & ~(E_STRICT|E_NOTICE));
//error_reporting(E_ALL | E_STRICT);
// End of common declaration part
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment