You are here

function uc_cart_checkout_review_form_back in Ubercart 6.2

Same name and namespace in other branches
  1. 7.3 uc_cart/uc_cart.pages.inc \uc_cart_checkout_review_form_back()

Returns the customer to the checkout page to edit their information.

See also

uc_cart_checkout_review_form()

1 string reference to 'uc_cart_checkout_review_form_back'
uc_cart_checkout_review_form in uc_cart/uc_cart.pages.inc
Gives customers the option to finish checkout or go revise their information.

File

uc_cart/uc_cart.pages.inc, line 493
Cart menu items.

Code

function uc_cart_checkout_review_form_back($form, &$form_state) {
  unset($_SESSION['do_review']);
  $form_state['redirect'] = 'cart/checkout';
}