diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-10-18 12:33:07 +0100 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-10-18 12:33:07 +0100 |
commit | 9aac3abfe47b9ff6977643d06caf0f9520cd55f1 (patch) | |
tree | 3d66c8e63713ba103c55075ebe0c287bc9f6af57 /_test | |
parent | eb9dc16998a7eb887015ef72e4100eb20617e7b8 (diff) | |
download | rpg-9aac3abfe47b9ff6977643d06caf0f9520cd55f1.tar.gz rpg-9aac3abfe47b9ff6977643d06caf0f9520cd55f1.tar.bz2 |
also use DOKU_E_LEVEL in bootstrap's call to error_reporting()
Diffstat (limited to '_test')
-rw-r--r-- | _test/bootstrap.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_test/bootstrap.php b/_test/bootstrap.php index 4cb6420bd..c3eba048a 100644 --- a/_test/bootstrap.php +++ b/_test/bootstrap.php @@ -16,7 +16,7 @@ define('SIMPLE_TEST', true); // basic behaviours define('DOKU_E_LEVEL',E_ALL); -error_reporting(E_ALL); +error_reporting(DOKU_E_LEVEL); set_time_limit(0); ini_set('memory_limit','2048M'); |