function uc_paypal_update_6200 in Ubercart 6.2
File
- payment/
uc_paypal/ uc_paypal.install, line 140 - Installation file for PayPal, primarily for the logging of IPNs.
Code
function uc_paypal_update_6200() {
$ret = array();
$ret[] = update_sql("UPDATE {uc_order_statuses} SET state = 'post_checkout' WHERE order_status_id = 'paypal_pending'");
return $ret;
}