This fixes a problem where the correct country is not selected, which affects how tax is added to the order.


In admin/includes/modules/create_order_details.php:

FIND:


CHANGE TO:



In admin/create_order_process.php:

FIND:
$country =
tep_db_prepare_input($HTTP_POST_VARS['country']);

CHANGE TO:
$country = tep_db_prepare_input(
tep_get_country_name($HTTP_POST_VARS['country']));

More...