Skip to content

Commit

Permalink
Fixes matomo-org#6845 -silent notice
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Dec 12, 2014
1 parent 8fecf6d commit b3e9a49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/upgradephp/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,8 @@ function _readfile($filename, $byteStart, $byteEnd, $useIncludePath = false, $co
for ($pos = $byteStart; $pos < $byteEnd && !feof($handle); $pos = ftell($handle)) {
echo fread($handle, min(8192, $byteEnd - $pos));

ob_flush();
flush();
@ob_flush();
@flush();
}

fclose($handle);
Expand Down

0 comments on commit b3e9a49

Please sign in to comment.