You are here

function gotwo_reset_confirm_submit in Go - url redirects 5

Form submit handler for click counter item reset.

File

./gotwo.module, line 448
Module that provides easy to use redirection links. A redirection link would be like: http://examples.org/go/a_label http://examples.org/go/123546 http://examples.org/go/or/like/this

Code

function gotwo_reset_confirm_submit($form_id, $form_values) {
  db_query("UPDATE {gotwo} SET cnt = 0 WHERE gid = %d", $form_values['gid']);
  return drupal_goto('admin/build/gotwo');
}