diff options
| author | Zeev Suraski <zeev@php.net> | 2000-01-29 11:55:44 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2000-01-29 11:55:44 +0000 |
| commit | b2449f929cdee3539c4667f31dc482ac34fc56ab (patch) | |
| tree | 07f3b187373edf7af3557e5d726c786c913b201b /main/php_variables.h | |
| parent | 6864e05ae39a664538a3f6ec417879763adbc2b3 (diff) | |
| download | php-git-b2449f929cdee3539c4667f31dc482ac34fc56ab.tar.gz | |
- Change the argument order of php_register_variable() to something more
intuitive.
- Make the authentication variables be a part of the HTTP_SERVER_VARS[] array
Diffstat (limited to 'main/php_variables.h')
| -rw-r--r-- | main/php_variables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.h b/main/php_variables.h index 826f77dc76..932b86bcc2 100644 --- a/main/php_variables.h +++ b/main/php_variables.h @@ -42,6 +42,6 @@ void php_treat_data(int arg, char *str ELS_DC PLS_DC SLS_DC); void php_import_environment_variables(ELS_D PLS_DC); -PHPAPI void php_register_variable(char *val, char *var, pval *track_vars_array ELS_DC PLS_DC); +PHPAPI void php_register_variable(char *var, char *val, pval *track_vars_array ELS_DC PLS_DC); #endif /* _PHP_VARIABLES_H */ |
