From 8a624c4dccbfa174d567e343f871939d5fd9e1a5 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sun, 16 Apr 2017 21:50:17 +0200 Subject: [PATCH] [ticket/15174] Increase timeout for loading indicator The timeout is rather low with 15 seconds until reporting a timed out request. 25 seconds will be compatible with almost any setup. A lot more changes would be needed to do proper timeout checks on slow requests like purging the board cache. PHPBB3-15174 --- phpBB/assets/javascript/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/assets/javascript/core.js b/phpBB/assets/javascript/core.js index f7ace80705..aa2cc70636 100644 --- a/phpBB/assets/javascript/core.js +++ b/phpBB/assets/javascript/core.js @@ -41,7 +41,7 @@ phpbb.loadingIndicator = function() { if ($loadingIndicator.is(':visible')) { phpbb.alert($alert.attr('data-l-err'), $alert.attr('data-l-timeout-processing-req')); } - }, 15000); + }, 25000); } return $loadingIndicator;