diff options
author | Sascha Schumann <sas@php.net> | 2001-07-10 15:59:33 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2001-07-10 15:59:33 +0000 |
commit | a2ce3c7068177c908ac8c437335acddc255a8bbf (patch) | |
tree | 88a48d0c38b35d1801115a9e54275f00fadc3b3d /main/php_globals.h | |
parent | 043ec51eb0e160f788ff86abe7df49d599212dae (diff) | |
download | php-git-a2ce3c7068177c908ac8c437335acddc255a8bbf.tar.gz |
Allow errors to be returned as XMLRPC fault packets.
Submitted by: Matt Allen <matt@investigationmarketplace.com>
Diffstat (limited to 'main/php_globals.h')
-rw-r--r-- | main/php_globals.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index 5698252213..302c237ffd 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -123,6 +123,10 @@ struct _php_core_globals { zend_bool y2k_compliance; zend_bool html_errors; + zend_bool xmlrpc_errors; + + short xmlrpc_error_number; + zend_bool modules_activated; |