Skip to content

Commit

Permalink
Fix bug-4613 HHVM: method ob_gzhandler not found
Browse files Browse the repository at this point in the history
Signed-off-by: Chirayu Chiripal <[email protected]>
  • Loading branch information
chirayuchiripal committed Dec 5, 2014
1 parent 2350718 commit 573f85f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
- bug Undefined index navwork, savedsearcheswork, fields
- bug #4620 Undefined index while adding to the central columns list
- bug #4618 Page scrolls while GIS visualization is zoomed in/out with mousewheel
- bug #4613 HHVM: method 'ob_gzhandler' not found

4.3.0.0 (not yet released)
+ rfe #1502 Smart sorting for int keys
Expand Down
3 changes: 2 additions & 1 deletion libraries/OutputBuffering.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ public static function getInstance()
public function start()
{
if (! $this->_on) {
if ($this->_mode) {
// HHVM as of 3.4.0 does not support ob_gzhandler
if ($this->_mode && ! defined('HHVM_VERSION')) {
ob_start('ob_gzhandler');
}
ob_start();
Expand Down

0 comments on commit 573f85f

Please sign in to comment.