Normally you shouldn't get deprecation warnings on production board because of the error reporting level used for phpBB:
Code: Select all
// Report all errors, except notices and deprecation messages
$level = E_ALL & ~E_NOTICE & ~E_DEPRECATED;
error_reporting($level);