|
|
@@ -463,7 +463,11 @@ class TableAcl {
|
|
|
$html->cnt .= '<option value="' . $val . '"' . $sel . '>' . $val . '</option>';
|
|
|
}
|
|
|
}
|
|
|
- else if (substr($colType['type'], 0, 4) == 'text') {
|
|
|
+ else if (substr($colType['type'], 0, 4) == 'text'
|
|
|
+ || substr($colType['type'], 0, 8) == 'tinytext'
|
|
|
+ || substr($colType['type'], 0, 10) == 'mediumtext'
|
|
|
+ || substr($colType['type'], 0, 8) == 'longtext'
|
|
|
+ ) {
|
|
|
$html->tag = 'textarea';
|
|
|
$html->cnt = htmlspecialchars($fValue);
|
|
|
if (isset($params['widthClass'])) {
|