For those who set the "Local" Settings for the Shop to "Germany" I've added a fix for the Database-Entries for "zone"
(Select of State/Region) because the first and last Entry:
Code: Select all
UPDATE `zone` SET `name` = 'Baden-Württemberg' WHERE `country_id` = '81' AND `code` = 'BAW';
UPDATE `zone` SET `name` = 'Thüringen' WHERE `country_id` = '81' AND `code` = 'THE';
Code: Select all
INSERT INTO `zone` (`zone_id`, `country_id`, `code`, `name`) VALUES ('1254', '81', 'BAW', 'Baden-Württemberg');
INSERT INTO `zone` (`zone_id`, `country_id`, `code`, `name`) VALUES ('1269', '81', 'THE', 'Thüringen');