Index: notifications_custom.admin.inc =================================================================== --- notifications_custom.admin.inc (revision 1190) +++ notifications_custom.admin.inc (working copy) @@ -115,10 +115,10 @@ $form['buttons'] = array('#type' => 'fieldset'); $form['buttons']['submit'] = array('#type' => 'submit', '#value' => t('Save')); if ($subs->module == 'notifications_custom') { - $form['buttons']['delete'] = array('#type' => 'submit', '#value' => t('Delete')); + $form['buttons']['reset'] = array('#type' => 'submit', '#value' => t('Reset to defaults')); } else { - $form['buttons']['reset'] = array('#type' => 'submit', '#value' => t('Reset to defaults')); + $form['buttons']['delete'] = array('#type' => 'submit', '#value' => t('Delete')); } return $form; }