Set getCacheTTL() to 50 for SpecialRecentChanges
authorAaron Schulz <aschulz@wikimedia.org>
Thu, 16 Jun 2016 05:34:23 +0000 (22:34 -0700)
committerAaron Schulz <aschulz@wikimedia.org>
Thu, 16 Jun 2016 05:34:29 +0000 (22:34 -0700)
The extra 0 was a typo.

Change-Id: I8701d0b3e78d47776b9eefb563116c0a4def188b

includes/specials/SpecialRecentchanges.php

index 00e07bd..4d6cb7c 100644 (file)
@@ -796,7 +796,7 @@ class SpecialRecentChanges extends ChangesListSpecialPage {
        }
 
        protected function getCacheTTL() {
-               return 60 * 50;
+               return 60 * 5;
        }
 
 }