Typo in code checking if we should turn on display_errors (was missing the S)
This commit is contained in:
parent
3c5cc45292
commit
98db206128
1 changed files with 2 additions and 2 deletions
|
@ -77,9 +77,9 @@ if (ini_get('date.timezone') == '')
|
|||
$config = Config::getInstance();
|
||||
|
||||
// Configures any available PHP configuration options
|
||||
if (isset($config->php['display_error']))
|
||||
if (isset($config->php['display_errors']))
|
||||
{
|
||||
ini_set('display_errors', (boolean)$config->php['display_error']);
|
||||
ini_set('display_errors', (boolean)$config->php['display_errors']);
|
||||
}
|
||||
|
||||
if (isset($config->php['error_reporting']))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue