diff --git a/integration/Geoip.php b/integration/Geoip.php index 69c8fec5d..1ce65b7e4 100755 --- a/integration/Geoip.php +++ b/integration/Geoip.php @@ -264,7 +264,6 @@ class Geoip extends Object { 'ZW' => "Zimbabwe" ); - /** * Find the country for an IP address. * @@ -367,18 +366,14 @@ class Geoip extends Object { } /** - * @param boolean $withBlank indicating the returned array containing blank value or not * Returns an array of ISO Country Codes -> Country Names */ - static function getCountryDropDown($withBlank = false) { + static function getCountryDropDown() { $dropdown = Geoip::$iso_3166_countryCodes; unset($dropdown['A1']); unset($dropdown['A2']); unset($dropdown['A3']); asort($dropdown); - if($withBlank){ - $dropdown = array_merge(array(""=>"Select a Country"), $dropdown); - } return $dropdown; } }