You are here

function countries_api_update_6103 in Country codes API 6

Issue #1561152 - Change "Libyan Arab Jamahiriya" to "Libya".

File

./countries_api.install, line 109
Install file for Countries API.

Code

function countries_api_update_6103() {
  $ret = array();
  $ret[] = update_sql("UPDATE {countries_api_countries} SET name = 'LIBYA', printable_name = 'Libya' WHERE iso2 = 'LY'");
  return $ret;
}