mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Enable php display_errors setting
This commit is contained in:
parent
6d4d15b221
commit
7b01858c57
1 changed files with 3 additions and 0 deletions
|
|
@ -77,6 +77,9 @@ class OC{
|
|||
// set some stuff
|
||||
//ob_start();
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
if (defined('DEBUG') && DEBUG){
|
||||
ini_set('display_errors', 1);
|
||||
}
|
||||
|
||||
date_default_timezone_set('Europe/Berlin');
|
||||
ini_set('arg_separator.output','&');
|
||||
|
|
|
|||
Loading…
Reference in a new issue