From 634366e746e438475cbf985dfcf948e37f0652fc Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Wed, 5 Jun 2013 22:24:45 -0400 Subject: [PATCH] CRM-12466 - Fix missing var (follow up to #927) ---------------------------------------- * CRM-12466: Group listings don't load http://issues.civicrm.org/jira/browse/CRM-12466 --- CRM/Contact/BAO/GroupContactCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.25.1