diff options
author | jim-p <jimp@pfsense.org> | 2013-04-05 09:51:23 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2013-04-05 09:51:52 -0400 |
commit | b5bf49e168925bbb901471de3e389b6d8cb2ad5c (patch) | |
tree | cdd0cf2e1e2becb413d90db1a629ee180ff14ccd | |
parent | 28b66f44f99edb51b258e4080259bdb39a839f2d (diff) | |
download | pfsense-packages-b5bf49e168925bbb901471de3e389b6d8cb2ad5c.tar.gz pfsense-packages-b5bf49e168925bbb901471de3e389b6d8cb2ad5c.tar.bz2 pfsense-packages-b5bf49e168925bbb901471de3e389b6d8cb2ad5c.zip |
Flush output buffer while running bgp status commands to avoid a php crash
-rw-r--r-- | config/openbgpd/openbgpd_status.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/openbgpd/openbgpd_status.php b/config/openbgpd/openbgpd_status.php index 3db2781a..e6f69d07 100644 --- a/config/openbgpd/openbgpd_status.php +++ b/config/openbgpd/openbgpd_status.php @@ -62,6 +62,7 @@ function doCmdT($title, $command) { $fd = popen("{$command} 2>&1", "r"); while (($line = fgets($fd)) !== FALSE) { echo htmlspecialchars($line, ENT_NOQUOTES); + ob_flush(); } pclose($fd); } |