Merge pull request #3906 from colemanw/CRM-15141
[civicrm-core.git] / CRM / Admin / Form / Options.php
index cd2049cf33d884b325273ad3af4568e6e6d2dc47..8282796976e620bf665b06fb1ce225ba558192c9 100644 (file)
@@ -150,6 +150,8 @@ class CRM_Admin_Form_Options extends CRM_Admin_Form {
    */
   public function buildQuickForm() {
     parent::buildQuickForm();
+    $this->setPageTitle(ts('%1 Option', array(1 => $this->_gLabel)));
+
     if ($this->_action & CRM_Core_Action::DELETE) {
       return;
     }
@@ -285,6 +287,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)) {
@@ -436,4 +439,5 @@ class CRM_Admin_Form_Options extends CRM_Admin_Form {
       CRM_Core_Session::setStatus(ts('The %1 \'%2\' has been saved.', array(1 => $this->_gLabel, 2 => $optionValue->label)), ts('Saved'), 'success');
     }
   }
+
 }