uc_2checkout_finalize()contributions/ubercart/payment/uc_2checkout/uc_2checkout.pages.inc, line 79
<?php
function uc_2checkout_finalize() {
$order = uc_order_load(arg(3));
// Add a comment to let sales team know this came in through the site.
uc_order_comment_save($order->order_id, 0, t('Order created through website.'), 'admin');
$output = uc_cart_complete_sale($order, variable_get('uc_new_customer_login', FALSE));
$page = variable_get('uc_cart_checkout_complete_page', '');
if (!empty($page)) {
drupal_goto($page);
}
return $output;
}
?>