Fix ob_flush() notice message properly - refs #5565

1.9.x
Yannick Warnier 11 years ago
parent e0d4800935
commit b499b305dc
  1. 7
      main/install/index.php

@ -748,8 +748,11 @@ if (@$_POST['step2']) {
// Push the web server to send these strings before we start the real
// installation process
flush();
//ob_flush(); //#5565
flush();
$f = ob_get_contents();
if (!empty($f)) {
ob_flush(); //#5565
}
if ($installType == 'update') {

Loading…
Cancel
Save