You are here

function gotwo_delete_form_submit in Go - url redirects 6

Same name and namespace in other branches
  1. 7 gotwo.admin.inc \gotwo_delete_form_submit()

Delete redirect form submitted

File

./gotwo.admin.inc, line 162
Administrative page callbacks for the gotwo module.

Code

function gotwo_delete_form_submit($form, &$form_state) {
  db_query('DELETE FROM {gotwo} WHERE gid = %d', $form_state['values']['gid']);
  $form_state['redirect'] = 'admin/build/gotwo';
}