File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? ????, PHP 8.3.3
4
4
5
+ - Phar:
6
+ . Fixed bug #71465 (PHAR doesn't know about litespeed). (nielsdos)
5
7
6
8
18 Jan 2024, PHP 8.3.2
7
9
Original file line number Diff line number Diff line change @@ -608,7 +608,8 @@ PHP_METHOD(Phar, webPhar)
608
608
609
609
if ((sapi_mod_name_len == sizeof ("cgi-fcgi" ) - 1 && !strncmp (sapi_module .name , "cgi-fcgi" , sizeof ("cgi-fcgi" ) - 1 ))
610
610
|| (sapi_mod_name_len == sizeof ("fpm-fcgi" ) - 1 && !strncmp (sapi_module .name , "fpm-fcgi" , sizeof ("fpm-fcgi" ) - 1 ))
611
- || (sapi_mod_name_len == sizeof ("cgi" ) - 1 && !strncmp (sapi_module .name , "cgi" , sizeof ("cgi" ) - 1 ))) {
611
+ || (sapi_mod_name_len == sizeof ("cgi" ) - 1 && !strncmp (sapi_module .name , "cgi" , sizeof ("cgi" ) - 1 ))
612
+ || (sapi_mod_name_len == sizeof ("litespeed" ) - 1 && !strncmp (sapi_module .name , "litespeed" , sizeof ("litespeed" ) - 1 ))) {
612
613
613
614
if (Z_TYPE (PG (http_globals )[TRACK_VARS_SERVER ]) != IS_UNDEF ) {
614
615
HashTable * _server = Z_ARRVAL (PG (http_globals )[TRACK_VARS_SERVER ]);
You can’t perform that action at this time.
0 commit comments