diff options
author | Zeev Suraski <zeev@php.net> | 2000-01-28 18:29:37 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-01-28 18:29:37 +0000 |
commit | 99f079a3495f8b909d2f79c3c67b88f89e316f49 (patch) | |
tree | c8bc111e4c40457fd18a7d6efa2b8e54a5f11b36 /main/php_variables.c | |
parent | ab16816eb8ab4efd6b547ca68d6db2d530c15cda (diff) | |
download | php-git-99f079a3495f8b909d2f79c3c67b88f89e316f49.tar.gz |
- A few fixes
- Added register_argv_argc directive to allow disabling of argv/argc
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index b4355b4ee8..383442ab66 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -40,7 +40,7 @@ PHPAPI void php_register_variable(char *val, char *var, pval *track_vars_array E HashTable *symtable1=NULL; HashTable *symtable2=NULL; - if (PG(gpc_globals)) { + if (PG(register_globals)) { symtable1 = EG(active_symbol_table); } if (track_vars_array) { |