You are here

function smart_ip_update_7003 in Smart IP 7.2

Same name and namespace in other branches
  1. 7 smart_ip.install \smart_ip_update_7003()

Corrected GeoIP Web Service city to city_isp_org.

File

./smart_ip.install, line 210
Installation callback for Smart IP.

Code

function smart_ip_update_7003() {
  if (variable_get('smart_ip_maxmind_service', 'country') == 'city') {
    variable_set('smart_ip_maxmind_service', 'city_isp_org');
  }
}