Topic: error_reporting setting in include/essentials.php
Lines 65-66 in include/essentials.php :
// Make sure PHP reports all errors except E_NOTICE. PunBB supports E_ALL, but a lot of scripts it may interact with, do not.
error_reporting(E_ALL);
It seems to me that either the comment is wrong, or the code should read
error_reporting(E_ALL & ~E_NOTICE);
Am I right ?