X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FDAO%2FUFGroup.php;h=c3d7c543358bc9835d57ab0470b10e47e654479d;hb=b18ac85d86dad06742f76c1e10fe5c3eb898a45b;hp=27bfa1f2a3fb65b4763e26ce5fc1d2f37b63b82c;hpb=21a24f672faab2d383d2bbbcd677b900e847a5f1;p=civicrm-core.git diff --git a/CRM/Core/DAO/UFGroup.php b/CRM/Core/DAO/UFGroup.php index 27bfa1f2a3..c3d7c54335 100644 --- a/CRM/Core/DAO/UFGroup.php +++ b/CRM/Core/DAO/UFGroup.php @@ -19,14 +19,14 @@ class CRM_Core_DAO_UFGroup extends CRM_Core_DAO { * * @var string */ - static $_tableName = 'civicrm_uf_group'; + public static $_tableName = 'civicrm_uf_group'; /** * Should CiviCRM log any modifications to this table in the civicrm_log table. * * @var bool */ - static $_log = TRUE; + public static $_log = TRUE; /** * Unique table ID @@ -231,7 +231,7 @@ class CRM_Core_DAO_UFGroup extends CRM_Core_DAO { */ public static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { - Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); + Civi::$statics[__CLASS__]['links'] = static::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'limit_listings_group_id', 'civicrm_group', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'add_to_group_id', 'civicrm_group', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName(), 'created_id', 'civicrm_contact', 'id');