diff options
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index 4aec8a6a87..39e9d16200 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -71,6 +71,7 @@ struct _php_core_globals { zend_bool track_errors; zend_bool display_errors; + zend_bool display_startup_errors; zend_bool log_errors; char *error_log; @@ -113,7 +114,11 @@ struct _php_core_globals { zend_bool html_errors; - zend_bool modules_activated; + zend_bool modules_activated; + + zend_bool file_uploads; + + zend_bool during_request_startup; }; |