File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ PHP NEWS
20
20
- Date:
21
21
. Fixed #69044 (discrepency between time and microtime). (krakjoe)
22
22
23
+ - Libxml:
24
+ . Fixed bug #78279 (libxml_disable_entity_loader settings is shared between
25
+ requests (cgi-fcgi)). (Nikita)
26
+
23
27
- LiteSpeed:
24
28
. Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
25
29
100 to 1000, added crash handler to cleanly shutdown PHP request, added
Original file line number Diff line number Diff line change @@ -879,13 +879,14 @@ static PHP_RINIT_FUNCTION(libxml)
879
879
xmlSetGenericErrorFunc (NULL , php_libxml_error_handler );
880
880
xmlParserInputBufferCreateFilenameDefault (php_libxml_input_buffer_create_filename );
881
881
xmlOutputBufferCreateFilenameDefault (php_libxml_output_buffer_create_filename );
882
-
883
- /* Enable the entity loader by default. This ensures that
884
- * other threads/requests that might have disabled the loader
885
- * do not affect the current request.
886
- */
887
- LIBXML (entity_loader_disabled ) = 0 ;
888
882
}
883
+
884
+ /* Enable the entity loader by default. This ensures that
885
+ * other threads/requests that might have disabled the loader
886
+ * do not affect the current request.
887
+ */
888
+ LIBXML (entity_loader_disabled ) = 0 ;
889
+
889
890
return SUCCESS ;
890
891
}
891
892
You can’t perform that action at this time.
0 commit comments