
Originally Posted by
n8pbm
I may be doing this wrong but when I enter that phrase I get no results found. Still using 1.2.0.
Thanks for that as it confirms my suspicion.
Let's try changing this section
Code:
case '1.1.0':
$db->Execute(
'INSERT IGNORE INTO ' . TABLE_CONFIGURATION . "
(configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added)
VALUES
('Fixed Handling Fee, Order or Box?', 'MODULE_SHIPPING_UPSOAUTH_HANDLING_APPLIES', 'Order', 'If the handling fee is a <em>fixed amount</em>, should it be applied once per order (the default) or for every box?', 6, 0, NULL, 'zen_cfg_select_option([\'Order\', \'Box\'], ', now())"
);
to read
Code:
case '1.1.0':
case '1.2.0':
case '1.2.1':
$db->Execute(
'INSERT IGNORE INTO ' . TABLE_CONFIGURATION . "
(configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added)
VALUES
('Fixed Handling Fee, Order or Box?', 'MODULE_SHIPPING_UPSOAUTH_HANDLING_APPLIES', 'Order', 'If the handling fee is a <em>fixed amount</em>, should it be applied once per order (the default) or for every box?', 6, 0, NULL, 'zen_cfg_select_option([\'Order\', \'Box\'], ', now())"
);
break; //- END OF AUTOMATIC UPDATE CHECKS!