From c34d2b91dad13d793baf94180457a935e04a9526 Mon Sep 17 00:00:00 2001 From: foobar Date: Wed, 4 Apr 2001 20:46:26 +0000 Subject: Added new configuration directives: arg_separator.input and arg_separator.output --- main/php_globals.h | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'main/php_globals.h') diff --git a/main/php_globals.h b/main/php_globals.h index 593f37498c..57b9da2a9b 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -52,6 +52,11 @@ extern ZEND_API struct _php_core_globals core_globals; struct _php_tick_function_entry; +typedef struct _arg_separators { + char *output; + char *input; +} arg_separators; + struct _php_core_globals { zend_bool magic_quotes_gpc; zend_bool magic_quotes_runtime; @@ -93,7 +98,8 @@ struct _php_core_globals { char *auto_prepend_file; char *auto_append_file; - char *arg_separator; + arg_separators arg_separator; + char *gpc_order; char *variables_order; -- cgit v1.2.1