Ticket #22430: 22430.patch
File 22430.patch, 478 bytes (added by , 5 years ago) |
---|
-
src/wp-includes/functions.php
4457 4457 * @since 2.2.0 4458 4458 */ 4459 4459 function wp_ob_end_flush_all() { 4460 $start = (int) ini_get('zlib.output_compression'); 4460 4461 $levels = ob_get_level(); 4461 for ( $i = 0; $i < $levels; $i++ ) {4462 for ( $i = $start; $i < $levels; $i++ ) { 4462 4463 ob_end_flush(); 4463 4464 } 4464 4465 }