PMCORE-2959
This commit is contained in:
@@ -3591,7 +3591,7 @@ class XmlFormFieldDropdown extends XmlFormField
|
|||||||
$html .= 'value="' . (($findValue != '') ? $findValue : $firstValue) . '" />';
|
$html .= 'value="' . (($findValue != '') ? $findValue : $firstValue) . '" />';
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->selectedValue = ($findValue != "") ? $findValue : ($count == 0) ? $firstValue : "";
|
$this->selectedValue = (!empty($findValue) ? $findValue : ($count == 0)) ? $firstValue : "";
|
||||||
} else {
|
} else {
|
||||||
//Render Field showing only value;
|
//Render Field showing only value;
|
||||||
foreach ($this->option as $optValue => $optName) {
|
foreach ($this->option as $optValue => $optName) {
|
||||||
|
|||||||
Reference in New Issue
Block a user