Issue #1704422 by sun, dcam: Fixed Error level constants cannot be used in settings.php.
parent
914cf198d3
commit
b91c8d5dd0
|
@ -25,6 +25,21 @@ define('DRUPAL_MINIMUM_PHP', '5.2.4');
|
|||
*/
|
||||
define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT', '32M');
|
||||
|
||||
/**
|
||||
* Error reporting level: display no errors.
|
||||
*/
|
||||
define('ERROR_REPORTING_HIDE', 0);
|
||||
|
||||
/**
|
||||
* Error reporting level: display errors and warnings.
|
||||
*/
|
||||
define('ERROR_REPORTING_DISPLAY_SOME', 1);
|
||||
|
||||
/**
|
||||
* Error reporting level: display all messages.
|
||||
*/
|
||||
define('ERROR_REPORTING_DISPLAY_ALL', 2);
|
||||
|
||||
/**
|
||||
* Indicates that the item should never be removed unless explicitly selected.
|
||||
*
|
||||
|
|
|
@ -5,21 +5,6 @@
|
|||
* Functions for error handling.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Error reporting level: display no errors.
|
||||
*/
|
||||
define('ERROR_REPORTING_HIDE', 0);
|
||||
|
||||
/**
|
||||
* Error reporting level: display errors and warnings.
|
||||
*/
|
||||
define('ERROR_REPORTING_DISPLAY_SOME', 1);
|
||||
|
||||
/**
|
||||
* Error reporting level: display all messages.
|
||||
*/
|
||||
define('ERROR_REPORTING_DISPLAY_ALL', 2);
|
||||
|
||||
/**
|
||||
* Maps PHP error constants to watchdog severity levels.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue