From 8bd4ee733a5884015ad846a1b359f71d36274783 Mon Sep 17 00:00:00 2001 From: Andrew O'Neil Date: Wed, 22 Oct 2008 04:02:06 +0000 Subject: [PATCH] Fix typo git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.2@64643 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- forms/CountryDropdownField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);