Fix ob_flush() notice message properly - refs #5565

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

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

Loading…
Cancel
Save