From 7a897d9a13461472b0afe0e0a34ddbdeac6b3cfd Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 6 Sep 2018 15:33:41 +1200 Subject: [PATCH] Do not force cache reset on membershipType pseudoconstant. For some reason, lost in svn days, the membershipType pseudoconstant is set to not use the cache by passing = true. It was probably test frustration & does not make sense now --- CRM/Member/PseudoConstant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Member/PseudoConstant.php b/CRM/Member/PseudoConstant.php index 5d94876895..1ed1f15980 100644 --- a/CRM/Member/PseudoConstant.php +++ b/CRM/Member/PseudoConstant.php @@ -65,7 +65,7 @@ class CRM_Member_PseudoConstant extends CRM_Core_PseudoConstant { if (!self::$membershipType || $force) { CRM_Core_PseudoConstant::populate(self::$membershipType, 'CRM_Member_DAO_MembershipType', - FALSE, 'name', 'is_active', NULL, 'weight', 'id', TRUE + FALSE, 'name', 'is_active', NULL, 'weight', 'id' ); } if ($id) { -- 2.25.1