Index: branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php =================================================================== --- branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php +++ branches/5.2.x/units/shipping_quote_engines/shipping_quote_collector.php @@ -19,8 +19,7 @@ { /** @var kCountryStatesHelper $cs_helper */ $cs_helper = $this->Application->recallObject('CountryStatesHelper'); - - $has_states = $cs_helper->CountryHasStates( $cs_helper->getCountryIso($params['dest_country'], true) ); + $has_states = $cs_helper->CountryHasStates($params['dest_country']); if ( !$params['dest_city'] || !$params['dest_country'] || @@ -194,4 +193,4 @@ return $elem1['TotalCost'] < $elem2['TotalCost'] ? -1 : 1; } -} \ No newline at end of file +}