summaryrefslogtreecommitdiff
path: root/lib/exe
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2015-03-19 09:40:54 +0100
committerAndreas Gohr <andi@splitbrain.org>2015-03-19 09:40:54 +0100
commit8a6a4be3f464afb3d69b51b74d95e8fbf21ea2df (patch)
treef2a0e5062f11e393a0621324e971626f1b5d8c7d /lib/exe
parent8599a179b08d4cdcf1c8895bacde82aad9df101f (diff)
parente13bd5dcd000cc82ed5f1379dac0d674789d3a0c (diff)
downloadrpg-8a6a4be3f464afb3d69b51b74d95e8fbf21ea2df.tar.gz
rpg-8a6a4be3f464afb3d69b51b74d95e8fbf21ea2df.tar.bz2
Merge pull request #1022 from cdwertmann/patch-1
indexer.php: slow page loads on lighttpd due to missing ob_flush()
Diffstat (limited to 'lib/exe')
-rw-r--r--lib/exe/indexer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/exe/indexer.php b/lib/exe/indexer.php
index 330b8498d..d2a4d45f7 100644
--- a/lib/exe/indexer.php
+++ b/lib/exe/indexer.php
@@ -199,7 +199,7 @@ function sendGIF(){
header('Content-Length: '.strlen($img));
header('Connection: Close');
print $img;
- flush();
+ tpl_flush();
// Browser should drop connection after this
// Thinks it's got the whole image
}