# HG changeset patch # User Tom Fredrik "BFG" Klaussen # Date 1457394228 -3600 # Node ID 6f5939bf53c3bdeeecf32c1cabcec24b8a6662f9 # Parent 812b0cfa999fddd1330d2ffd9e9fbc06264f3606 Set flag cache expiry time to today + 30 days diff -r 812b0cfa999f -r 6f5939bf53c3 Flag.inc --- a/Flag.inc Mon Mar 07 20:45:02 2016 +0100 +++ b/Flag.inc Tue Mar 08 00:43:48 2016 +0100 @@ -55,7 +55,7 @@ } $cache = new CacheTimeCheck($this->name); - $cache->setMaxAge(86400); + $cache->setMaxAge(30*86400); $cache->addParent($masterCache); $this->setCache($cache); }