From: Aaron Schulz Date: Thu, 16 Jun 2016 05:34:23 +0000 (-0700) Subject: Set getCacheTTL() to 50 for SpecialRecentChanges X-Git-Tag: 1.31.0-rc.0~6598 X-Git-Url: http://git.cyclocoop.org/%22.%24redirect_annul.%22?a=commitdiff_plain;h=e550c67bdebe994fcf29091636e06a988ed1c9e4;p=lhc%2Fweb%2Fwiklou.git Set getCacheTTL() to 50 for SpecialRecentChanges The extra 0 was a typo. Change-Id: I8701d0b3e78d47776b9eefb563116c0a4def188b --- diff --git a/includes/specials/SpecialRecentchanges.php b/includes/specials/SpecialRecentchanges.php index 00e07bdc8d..4d6cb7c9d4 100644 --- a/includes/specials/SpecialRecentchanges.php +++ b/includes/specials/SpecialRecentchanges.php @@ -796,7 +796,7 @@ class SpecialRecentChanges extends ChangesListSpecialPage { } protected function getCacheTTL() { - return 60 * 50; + return 60 * 5; } }