You are here

function uc_order_select_form_submit in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_order/uc_order.admin.inc \uc_order_select_form_submit()

File

uc_order/uc_order.module, line 1172

Code

function uc_order_select_form_submit($form_id, $form_values) {
  if (uc_order_exists($form_values['order_id'])) {
    drupal_goto('admin/store/orders/' . $form_values['order_id']);
  }
}