mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '3.5' into 3.6
This commit is contained in:
commit
d94182702c
@ -58,6 +58,7 @@ class CountryDropdownField extends DropdownField {
|
|||||||
public function Field($properties = array()) {
|
public function Field($properties = array()) {
|
||||||
$source = $this->getSource();
|
$source = $this->getSource();
|
||||||
|
|
||||||
|
if(!$this->getHasEmptyDefault()){
|
||||||
if (!$this->value || !isset($source[$this->value])) {
|
if (!$this->value || !isset($source[$this->value])) {
|
||||||
if ($this->config()->default_to_locale && $this->locale()) {
|
if ($this->config()->default_to_locale && $this->locale()) {
|
||||||
$locale = new Zend_Locale();
|
$locale = new Zend_Locale();
|
||||||
@ -69,6 +70,7 @@ class CountryDropdownField extends DropdownField {
|
|||||||
if (!$this->value || !isset($source[$this->value])) {
|
if (!$this->value || !isset($source[$this->value])) {
|
||||||
$this->value = $this->config()->default_country;
|
$this->value = $this->config()->default_country;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return parent::Field();
|
return parent::Field();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user