Bug #48713 » mailHtmlAbstractElementView.patch
typo3/sysext/form/Classes/View/Mail/Html/Element/AbstractElementView.php (revision ) | ||
---|---|---|
}
|
||
break;
|
||
case 'inputvalue':
|
||
if (array_key_exists('checked', $this->model->getAllowedAttributes())) {
|
||
if (!$this->model->hasAttribute('checked')) {
|
||
if (array_key_exists('checked', $this->model->getAllowedAttributes()) && !$this->model->hasAttribute('checked')) {
|
||
$emptyElement = TRUE;
|
||
}
|
||
} elseif (array_key_exists('selected', $this->model->getAllowedAttributes()) && !$this->model->hasAttribute('selected')) {
|
||
$emptyElement = TRUE;
|
||
} else {
|
- « Previous
- 1
- 2
- Next »