From: Tim Otten Date: Thu, 6 Jun 2013 02:24:45 +0000 (-0400) Subject: CRM-12466 - Fix missing var (follow up to #927) X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=634366e746e438475cbf985dfcf948e37f0652fc;p=civicrm-core.git CRM-12466 - Fix missing var (follow up to #927) ---------------------------------------- * CRM-12466: Group listings don't load http://issues.civicrm.org/jira/browse/CRM-12466 --- diff --git a/CRM/Contact/BAO/GroupContactCache.php b/CRM/Contact/BAO/GroupContactCache.php index 6de0de466e..bf1aeb7ead 100644 --- a/CRM/Contact/BAO/GroupContactCache.php +++ b/CRM/Contact/BAO/GroupContactCache.php @@ -169,7 +169,7 @@ AND ( g.cache_date IS NULL OR if (!empty($refreshGroupIDs)) { $refreshGroupIDString = CRM_Core_DAO::escapeString(implode(', ', $refreshGroupIDs)); - $time = CRM_Utils_Date::getUTCTime($smartGroupCacheTimeout * 60); + $time = CRM_Utils_Date::getUTCTime(self::smartGroupCacheTimeout() * 60); $query = " UPDATE civicrm_group g SET g.refresh_date = $time