Bug #38979
display_errors = 1 overrides TYPO3 displayErrors setting
| Status: | New | Start date: | 2012-07-16 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
| Votes: | 2 (View) |
Description
In mod1/class.tx_euldap_div.php are two ini_sets:
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL & ~E_NOTICE);
Because this class is loaded in FE too, it doesn't matter what TYPO3_CONV_VARS[SYS][displayErrors] setting you have, it's always overriden.
This two settings should be removed completely or moved into a separate debug section which is optional.