Merge pull request #14987 from civicrm/5.16
[civicrm-core.git] / CRM / Campaign / Form / Task.php
index 86b7a269b93036bb8898357352247e3311d74334..f6575049df618e512e81e0016657fe61c1c2c3ae 100644 (file)
@@ -109,17 +109,16 @@ class CRM_Campaign_Form_Task extends CRM_Core_Form_Task {
    */
   public function addDefaultButtons($title, $nextType = 'next', $backType = 'back', $submitOnce = FALSE) {
     $this->addButtons([
-        [
-          'type' => $nextType,
-          'name' => $title,
-          'isDefault' => TRUE,
-        ],
-        [
-          'type' => $backType,
-          'name' => ts('Cancel'),
-        ],
-      ]
-    );
+      [
+        'type' => $nextType,
+        'name' => $title,
+        'isDefault' => TRUE,
+      ],
+      [
+        'type' => $backType,
+        'name' => ts('Cancel'),
+      ],
+    ]);
   }
 
 }