From dc3d0b21a95672a9d68bc0f9b16117a008852333 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Thu, 17 May 2012 08:40:32 +0000 Subject: [PATCH] layout change for radio list --- lam/lib/html.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lam/lib/html.inc b/lam/lib/html.inc index 8f7fce45..1c3057b8 100644 --- a/lam/lib/html.inc +++ b/lam/lib/html.inc @@ -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); } /**