layout change for radio list

This commit is contained in:
Roland Gruber 2012-05-17 08:40:32 +00:00
parent 9c2f6e2135
commit dc3d0b21a9
1 changed files with 3 additions and 2 deletions

View File

@ -1241,6 +1241,7 @@ class htmlTableExtendedRadio extends htmlRadio {
parent::__construct($name, $elements, $selectedElement);
$this->label = htmlspecialchars($label);
$this->helpID = $helpID;
$this->alignment = htmlElement::ALIGN_TOP;
}
/**
@ -1722,8 +1723,8 @@ class htmlInputTextarea extends htmlElement {
function __construct($name, $value, $colCount, $rowCount) {
$this->name = htmlspecialchars($name);
$this->value = htmlspecialchars($value);
$this->colCount = $colCount;
$this->rowCount = $rowCount;
$this->colCount = htmlspecialchars($colCount);
$this->rowCount = htmlspecialchars($rowCount);
}
/**