Skip to content

Commit 0b4f2cd

Browse files
committed
Allow output buffer to be removable
1 parent f218dc8 commit 0b4f2cd

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

plugins/optimization-detective/optimization.php

+6-7
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,13 @@ function od_buffer_output( string $passthrough ): string {
4040
* If this ends up being problematic, then PHP_OUTPUT_HANDLER_FLUSHABLE could be added to the $flags and the
4141
* output buffer callback could check if the phase is PHP_OUTPUT_HANDLER_FLUSH and abort any subsequent
4242
* processing while also emitting a _doing_it_wrong().
43+
*
44+
* The output buffer needs to be removable because WordPress calls wp_ob_end_flush_all() and then calls
45+
* wp_cache_close(). If the buffers are not all flushed before wp_cache_close() is closed, then some output buffer
46+
* handlers (e.g. for caching plugins) may fail to be able to store the page output in the object cache.
47+
* See <https://github.com/WordPress/performance/pull/1317#issuecomment-2271955356>.
4348
*/
44-
$flags = PHP_OUTPUT_HANDLER_CLEANABLE;
45-
46-
// When running unit tests the output buffer must also be removable in order to obtain the buffered output.
47-
if ( php_sapi_name() === 'cli' ) {
48-
// TODO: Do any caching plugins need the output buffer to be removable? This is unlikely, as they would pass an output buffer callback to ob_start() instead of calling ob_get_clean() at shutdown.
49-
$flags |= PHP_OUTPUT_HANDLER_REMOVABLE;
50-
}
49+
$flags = PHP_OUTPUT_HANDLER_CLEANABLE | PHP_OUTPUT_HANDLER_REMOVABLE;
5150

5251
ob_start(
5352
static function ( string $output, ?int $phase ): string {

0 commit comments

Comments
 (0)