diff --git a/forms/CountryDropdownField.php b/forms/CountryDropdownField.php index f29a2607f..96b1090f5 100644 --- a/forms/CountryDropdownField.php +++ b/forms/CountryDropdownField.php @@ -14,7 +14,7 @@ class CountryDropdownField extends DropdownField { function __construct($name, $title, $value = '') { if(!$value) { - $value = Geop::visitor_country(); + $value = Geoip::visitor_country(); } parent::__construct($name, $title, Geoip::getCountryDropDown(), $value);