From 0675a92ad1c04e671eeb67bd5c39c97ab7e1a544 Mon Sep 17 00:00:00 2001 From: Robert Landers Date: Sat, 12 Oct 2024 09:22:47 +0200 Subject: [PATCH] clean up comments --- frankenphp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frankenphp.c b/frankenphp.c index 011535db2..44f431824 100644 --- a/frankenphp.c +++ b/frankenphp.c @@ -756,7 +756,7 @@ static void frankenphp_register_variables(zval *track_vars_array) { /* https://www.php.net/manual/en/reserved.variables.server.php */ /* In CGI mode, we consider the environment to be a part of the server - * variables + * variables. */ struct go_getfullenv_return full_env = go_getfullenv(thread_index); @@ -775,8 +775,6 @@ static void frankenphp_register_variables(zval *track_vars_array) { zend_string_release(key_str); } - // php_import_environment_variables(track_vars_array); - go_register_variables(thread_index, track_vars_array); }