Index: branches/5.1.x/core/units/configuration/configuration_event_handler.php =================================================================== diff -u -N -r13212 -r13470 --- branches/5.1.x/core/units/configuration/configuration_event_handler.php (.../configuration_event_handler.php) (revision 13212) +++ branches/5.1.x/core/units/configuration/configuration_event_handler.php (.../configuration_event_handler.php) (revision 13470) @@ -1,6 +1,6 @@ Application->recallObject('CountryStatesHelper'); - $state_iso = $cs_helper->CheckState($check_state, $check_country); + /* @var $cs_helper kCountryStatesHelper */ + + $state_iso = $cs_helper->getStateIso($check_state, $check_country); + if ($state_iso !== false) { $object->SetDBField('VariableValue', $state_iso); }