https://bugzilla.wikimedia.org/show_bug.cgi?id=31342
Andre Klapper <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Version|1.17.0 |1.21-git Summary|OutputHandler is not |OutputHandler is not |initialized depending on |initialized depending on |PHP.ini settings |PHP.ini settings for output | |buffering --- Comment #1 from Andre Klapper <[email protected]> --- Code has slightly changed /includes/WebStart.php , but still valid in 1.21wmf8: wfProfileIn( 'WebStart.php-ob_start' ); # Initialise output buffering # Check that there is no previous output or previously set up buffers, because # that would cause us to potentially mix gzip and non-gzip output, creating a # big mess. if ( !defined( 'MW_NO_OUTPUT_BUFFER' ) && ob_get_level() == 0 ) { if ( !defined( 'MW_COMPILED' ) ) { require_once( "$IP/includes/OutputHandler.php" ); } ob_start( 'wfOutputHandler' ); } Similar comments in http://stackoverflow.com/questions/3641598/ob-get-level-starts-at-level-1 Docs: http://php.net/manual/en/function.ob-get-level.php -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
