From 3fff8d1ecc2b3d3c0667b4ed931ea82fbdc35ef7 Mon Sep 17 00:00:00 2001 From: Pradeep Nayak Date: Sat, 3 May 2014 02:29:39 +0530 Subject: [PATCH] -- added code to set/update is default for website type, CRM-9288 ---------------------------------------- * CRM-9288: Website type improvements: allow multiple websites in Profiles, respect default type and update type options https://issues.civicrm.org/jira/browse/CRM-9288 --- CRM/Admin/Form/Options.php | 1 + CRM/Admin/Page/Options.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CRM/Admin/Form/Options.php b/CRM/Admin/Form/Options.php index ffced7de5f..c6106aea73 100644 --- a/CRM/Admin/Form/Options.php +++ b/CRM/Admin/Form/Options.php @@ -284,6 +284,7 @@ class CRM_Admin_Form_Options extends CRM_Admin_Form { 'payment_instrument', 'communication_style', 'soft_credit_type', + 'website_type', ); if (in_array($this->_gName, $showIsDefaultGroups)) { diff --git a/CRM/Admin/Page/Options.php b/CRM/Admin/Page/Options.php index 31788c7eba..6165a283b6 100644 --- a/CRM/Admin/Page/Options.php +++ b/CRM/Admin/Page/Options.php @@ -143,7 +143,7 @@ class CRM_Admin_Page_Options extends CRM_Core_Page_Basic { 'communication_style', 'case_status', 'encounter_medium', 'case_type', 'payment_instrument', - 'soft_credit_type' + 'soft_credit_type', 'website_type' ) )) { $this->assign('showIsDefault', TRUE); -- 2.25.1