Merge pull request #4622 from civicrm/4.5
[civicrm-core.git] / CRM / Contribute / Form / ManagePremiums.php
index 4c9c34bbdf75361b42d20322bf8eed2dc7d56393..e324ccd2aebd68aa4fbdd832b425ebec10e0f4a8 100644 (file)
@@ -189,6 +189,18 @@ class CRM_Contribute_Form_ManagePremiums extends CRM_Contribute_Form {
 
     $this->addFormRule(array('CRM_Contribute_Form_ManagePremiums', 'formRule'));
 
+    $this->addButtons(array(
+        array(
+          'type' => 'upload',
+          'name' => ts('Save'),
+          'isDefault' => TRUE,
+        ),
+        array(
+          'type' => 'cancel',
+          'name' => ts('Cancel'),
+        ),
+      )
+    );
     $this->assign('productId', $this->_id);
   }