You are here

function commerce_checkout_update_7102 in Commerce Core 7

Disable the new checkout completion rule that updates order created dates to the checkout completion date.

File

modules/checkout/commerce_checkout.install, line 100

Code

function commerce_checkout_update_7102() {
  variable_set('enable_commerce_checkout_order_created_date_update', FALSE);
  return t('A new core checkout completion rule has been added that updates order creation timestamps to the time of checkout completion. It has been disabled by default to not interfere with existing order workflows, but you may enable it in your checkout settings if desired.');
}