diff options
-rw-r--r-- | main/php_globals.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/main/php_globals.h b/main/php_globals.h index f75c168791..4aec8a6a87 100644 --- a/main/php_globals.h +++ b/main/php_globals.h @@ -43,12 +43,12 @@ extern ZEND_API struct _php_core_globals core_globals; #endif -#define TRACK_VARS_POST 1 -#define TRACK_VARS_GET 2 -#define TRACK_VARS_COOKIE 3 -#define TRACK_VARS_SERVER 4 -#define TRACK_VARS_ENV 5 -#define TRACK_VARS_FILES 6 +#define TRACK_VARS_POST 0 +#define TRACK_VARS_GET 1 +#define TRACK_VARS_COOKIE 2 +#define TRACK_VARS_SERVER 3 +#define TRACK_VARS_ENV 4 +#define TRACK_VARS_FILES 5 struct _php_tick_function_entry; |