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 @@ -10,6 +10,10 @@ PHP NEWS
10
10
. Fixed #69044 (discrepency between time and microtime). (krakjoe)
11
11
. Updated timelib to 2018.02. (Derick)
12
12
13
+ - Libxml:
14
+ . Fixed bug #78279 (libxml_disable_entity_loader settings is shared between
15
+ requests (cgi-fcgi)). (Nikita)
16
+
13
17
- LiteSpeed:
14
18
. Updated to LiteSpeed SAPI V7.4.3 (increased response header count limit from
15
19
100 to 1000, added crash handler to cleanly shutdown PHP request, added
Original file line number Diff line number Diff line change @@ -877,13 +877,14 @@ static PHP_RINIT_FUNCTION(libxml)
877
877
xmlSetGenericErrorFunc (NULL , php_libxml_error_handler );
878
878
xmlParserInputBufferCreateFilenameDefault (php_libxml_input_buffer_create_filename );
879
879
xmlOutputBufferCreateFilenameDefault (php_libxml_output_buffer_create_filename );
880
-
881
- /* Enable the entity loader by default. This ensures that
882
- * other threads/requests that might have disabled the loader
883
- * do not affect the current request.
884
- */
885
- LIBXML (entity_loader_disabled ) = 0 ;
886
880
}
881
+
882
+ /* Enable the entity loader by default. This ensures that
883
+ * other threads/requests that might have disabled the loader
884
+ * do not affect the current request.
885
+ */
886
+ LIBXML (entity_loader_disabled ) = 0 ;
887
+
887
888
return SUCCESS ;
888
889
}
889
890
You can’t perform that action at this time.
0 commit comments