]> granicus.if.org Git - php/commitdiff
Fine tuned the order of adding request variables.
authorGeorge Wang <gwang@php.net>
Tue, 9 Sep 2014 03:58:05 +0000 (23:58 -0400)
committerGeorge Wang <gwang@php.net>
Tue, 9 Sep 2014 03:58:05 +0000 (23:58 -0400)
sapi/litespeed/lsapi_main.c

index cb7c66b44a162c54b6b3cbf93c84d1b636b8c9f6..789ebf24607ea5a7206a938c949c847597d8baa1 100644 (file)
@@ -311,6 +311,8 @@ static void sapi_lsapi_register_variables(zval *track_vars_array TSRMLS_DC)
         if ( (SG(request_info).request_uri ) )
             php_self = (SG(request_info).request_uri );
 
+        litespeed_php_import_environment_variables(track_vars_array TSRMLS_CC);
+
 #if ((PHP_MAJOR_VERSION == 5 && PHP_MINOR_VERSION < 4) || PHP_MAJOR_VERSION < 5)
         if (!PG(magic_quotes_gpc)) {
 #endif
@@ -324,7 +326,6 @@ static void sapi_lsapi_register_variables(zval *track_vars_array TSRMLS_DC)
             add_variable_magic_quote("PHP_SELF", 8, php_self, strlen( php_self ), track_vars_array );
         }
 #endif
-        litespeed_php_import_environment_variables(track_vars_array TSRMLS_CC);
     } else {
         php_import_environment_variables(track_vars_array TSRMLS_CC);