diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2003-12-24 16:38:22 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2003-12-24 16:38:22 +0000 |
commit | be5670af2b9aca5a8089d9d7fe28a4f8a6c5e14f (patch) | |
tree | 246439c6032017c85fffd776b0d6e9617e43086c /main/php_globals.h | |
parent | f95db00d6c35601f4c0ba474582d3928bc69a19d (diff) | |
download | php-git-be5670af2b9aca5a8089d9d7fe28a4f8a6c5e14f.tar.gz |
Fixed bug #26707 (Incorrect error for disabled functions/classes).
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index c0b3f57722..637759ee48 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -147,6 +147,9 @@ struct _php_core_globals { int last_error_lineno; error_handling_t error_handling; zend_class_entry *exception_class; + + char *disable_functions; + char *disable_classes; }; |