CRM-16415 - Stray button icons
authorColeman Watts <coleman@civicrm.org>
Thu, 26 Nov 2015 02:00:49 +0000 (21:00 -0500)
committerColeman Watts <coleman@civicrm.org>
Thu, 26 Nov 2015 02:00:49 +0000 (21:00 -0500)
CRM/Admin/Form/Setting/Smtp.php
CRM/Custom/Form/Option.php

index 25c80062e1d98a6389ee9471579f6462dc229e8f..1eb9661009dd694e4eb6bfadb7f8ef2bcb2b5998 100644 (file)
@@ -65,7 +65,7 @@ class CRM_Admin_Form_Setting_Smtp extends CRM_Admin_Form_Setting {
     $this->addFormRule(array('CRM_Admin_Form_Setting_Smtp', 'formRule'));
     parent::buildQuickForm();
     $buttons = $this->getElement('buttons')->getElements();
-    $buttons[] = $this->createElement('submit', $this->_testButtonName, ts('Save & Send Test Email'), array('crm-icon' => 'mail-closed'));
+    $buttons[] = $this->createElement('submit', $this->_testButtonName, ts('Save & Send Test Email'), array('crm-icon' => 'fa-envelope-o'));
     $this->getElement('buttons')->setElements($buttons);
   }
 
index 09707e756a6d0687f4ca7a604a90f75f679411cb..c12912e5e51239f089defc9ee50c1405c561ce99 100644 (file)
@@ -223,7 +223,7 @@ class CRM_Custom_Form_Option extends CRM_Core_Form {
         $this->addElement('button',
           'done',
           ts('Done'),
-          array('onclick' => "location.href='$url'", 'class' => 'crm-form-submit cancel', 'crm-icon' => 'close')
+          array('onclick' => "location.href='$url'", 'class' => 'crm-form-submit cancel', 'crm-icon' => 'fa-times')
         );
       }
     }