You are here

function uc_taxes_update_6003 in Ubercart 6.2

Increase the module weight so taxes are calculated after other line items.

File

uc_taxes/uc_taxes.install, line 133
Install, update and uninstall functions for the uc_taxes module.

Code

function uc_taxes_update_6003() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 10 WHERE name = 'uc_taxes'");
  return $ret;
}