summaryrefslogtreecommitdiff
path: root/lib/exe/indexer.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2007-02-08 20:51:45 +0100
committerAndreas Gohr <andi@splitbrain.org>2007-02-08 20:51:45 +0100
commitcde6a01b90b199cd9d42a8e23a61d467992b6d67 (patch)
tree67a5511a8ce19f62d3f11a007dc856caf8dc6ffe /lib/exe/indexer.php
parentbc6ecc12f39db1fe4b3e22e2a939f70691d6d1fc (diff)
downloadrpg-cde6a01b90b199cd9d42a8e23a61d467992b6d67.tar.gz
rpg-cde6a01b90b199cd9d42a8e23a61d467992b6d67.tar.bz2
workaround config for FS#852
On certain platforms the ignore_user_abort function does not work as expected, resulting in a non working indexer webbug. Users with such a broken system (IIS+PHP as CGI) can enable this option to work around the problem (resulting in longer load times for the webbug). darcs-hash:20070208195145-7ad00-8fc14f9da535a70fa837066773e15a3926b077c7.gz
Diffstat (limited to 'lib/exe/indexer.php')
-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 bb79bf2cc..da79db0e0 100644
--- a/lib/exe/indexer.php
+++ b/lib/exe/indexer.php
@@ -20,7 +20,7 @@ define('INDEXER_VERSION', 1);
@ignore_user_abort(true);
// check if user abort worked, if yes send output early
-if(@ignore_user_abort()){
+if(@ignore_user_abort() && !$conf['broken_iua']){
sendGIF(); // send gif
$defer = false;
}else{