Merge pull request #9566 from totten/master-19690-layout
[civicrm-core.git] / CRM / Price / Form / DeleteSet.php
index a187af2953ecc5ea1b8cc8f153c7131da4217b12..7adc42f22d5f32f959dda162bf3956d3e680f47e 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2015                                |
+ | Copyright CiviCRM LLC (c) 2004-2017                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2015
+ * @copyright CiviCRM LLC (c) 2004-2017
  * $Id$
  *
  */
@@ -73,17 +73,16 @@ class CRM_Price_Form_DeleteSet extends CRM_Core_Form {
   public function buildQuickForm() {
     $this->assign('title', $this->_title);
     $this->addButtons(array(
-        array(
-          'type' => 'next',
-          'name' => ts('Delete Price Set'),
-          'isDefault' => TRUE,
-        ),
-        array(
-          'type' => 'cancel',
-          'name' => ts('Cancel'),
-        ),
-      )
-    );
+      array(
+        'type' => 'next',
+        'name' => ts('Delete Price Set'),
+        'isDefault' => TRUE,
+      ),
+      array(
+        'type' => 'cancel',
+        'name' => ts('Cancel'),
+      ),
+    ));
   }
 
   /**