Added an override for CI's display of PHP errors, so that we can suppress it on production systems.
What I did
- Added an override for CI's display of PHP errors, so that we can suppress it on production systems.
Implications
None
Setup
None
How to test
- Code review
- Create or edit a controller so that it causes a PHP error (e.g.
echo 1 / 0;
) - Check that this error is displayed when DEBUGGING = true, and is not displayed otherwise.