comparison constants.inc @ 90:aafc23919e79

Validating errorPage.
author Tom Fredrik "BFG" Klaussen <bfg@blenning.no>
date Wed, 17 Oct 2012 21:23:02 +0200
parents 7a9c45b53866
children adf7b11921f4
comparison
equal deleted inserted replaced
89:fd39d7d5e9be 90:aafc23919e79
6 define(VERBOSITY_NONE, 0); 6 define(VERBOSITY_NONE, 0);
7 define(VERBOSITY_ERROR, 1); 7 define(VERBOSITY_ERROR, 1);
8 define(VERBOSITY_WARNING, 10); 8 define(VERBOSITY_WARNING, 10);
9 define(VERBOSITY_DEBUG, 100); 9 define(VERBOSITY_DEBUG, 100);
10 10
11 define(DEBUG_LEVEL, VERBOSITY_WARNING); 11 define(DEBUG_LEVEL, VERBOSITY_NONE);
12 12
13 define(DUMP, 0); 13 define(DUMP, 0);
14 define(MAX_RECURSE, 50); 14 define(MAX_RECURSE, 50);
15 define(CACHING, 1); 15 define(CACHING, 1);
16 define(VALIDATE, 0); 16 define(VALIDATE, 0);
17 17
18 define(ABORT_ON_LOG, TRUE); 18 define(ABORT_ON_LOG, FALSE);
19 19
20 20
21 if (DEBUG_LEVEL >= VERBOSITY_WARNING) { 21 if (DEBUG_LEVEL >= VERBOSITY_WARNING) {
22 error_reporting(E_ALL); 22 error_reporting(E_ALL);
23 ini_set("display_errors", 1); 23 ini_set("display_errors", 1);