summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-10-14 06:58:57 +0000
committerDerick Rethans <derick@php.net>2002-10-14 06:58:57 +0000
commit092f78fc2890eeac610926b5f7e4a404caf48893 (patch)
tree82971b51578873428836b402e5dbda8db42e1047
parent276b314ed39da8c7233a2d456e87e5f34185a252 (diff)
downloadphp-git-092f78fc2890eeac610926b5f7e4a404caf48893.tar.gz
- Fix CLI
-rw-r--r--sapi/cli/php_cli.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli.c b/sapi/cli/php_cli.c
index ddfa66163b..19bd640d15 100644
--- a/sapi/cli/php_cli.c
+++ b/sapi/cli/php_cli.c
@@ -156,7 +156,7 @@ static void sapi_cli_register_variables(zval *track_vars_array TSRMLS_DC)
/* In CGI mode, we consider the environment to be a part of the server
* variables
*/
- php_import_environment_variables(track_vars_array TSRMLS_CC);
+ _php_import_environment_variables(track_vars_array TSRMLS_CC);
/* Build the special-case PHP_SELF variable for the CLI version */
php_register_variable("PHP_SELF", php_self, track_vars_array TSRMLS_CC);