From: Coleman Watts Date: Wed, 3 Jun 2015 02:07:29 +0000 (-0400) Subject: CRM-16310 - Fix option view close button X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=443574621244da4575e7cf7a8b551f992ad68800;p=civicrm-core.git CRM-16310 - Fix option view close button --- diff --git a/CRM/Custom/Form/Option.php b/CRM/Custom/Form/Option.php index 2d97fc4bc1..dfedc866a5 100644 --- a/CRM/Custom/Form/Option.php +++ b/CRM/Custom/Form/Option.php @@ -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') + array('onclick' => "location.href='$url'", 'class' => 'crm-form-submit cancel', 'crm-icon' => 'close') ); } }