bug #2891250 [ob] Garbled data in navi frame (PHP 5.2.11 bug)

This commit is contained in:
Marc Delisle
2009-11-05 10:00:51 +00:00
parent 8c2c7f0b99
commit ce9705af8e
2 changed files with 6 additions and 2 deletions

View File

@@ -52,6 +52,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status
- bug #2890451 [setup] Inconsistent generated "designer_coords"
- bug #2890443 [mysqli] "No index used in query" exception is reported
- bug #2891250 [ob] Garbled data in navi frame (PHP 5.2.11 bug)
3.2.3.0 (2009-10-30)
- patch #2856664 [export] Date, time, and datetime column types now export correctly to

View File

@@ -100,9 +100,12 @@ function PMA_outBufferPost()
{
if (ob_get_status() && PMA_outBufferModeGet()) {
ob_flush();
} else {
flush();
}
/**
* previously we had here an "else flush()" but some PHP versions
* (at least PHP 5.2.11) have a bug (49816) that produces garbled
* data
*/
} // end of the 'PMA_outBufferPost()' function
?>