|
@@ -538,7 +538,7 @@ class UI {
|
|
|
|
|
|
if ($maxLength > 255) {// Fix for long varchar - use textarea
|
|
|
$html->tag = 'textarea';
|
|
|
- $html->childrens[] = htmlspecialchars($fValue);
|
|
|
+ $html->childrens[] = $fValue;
|
|
|
$html->attrs['rows'] = '3';
|
|
|
unset($html->attrs['type']);
|
|
|
unset($html->attrs['value']);
|
|
@@ -628,7 +628,7 @@ class UI {
|
|
|
|| substr($colType['type'], 0, 8) == 'longtext'
|
|
|
) {
|
|
|
$html->tag = 'textarea';
|
|
|
- $html->childrens[] = htmlspecialchars($fValue);
|
|
|
+ $html->childrens[] = $fValue;
|
|
|
if (isset($params['widthClass'])) {
|
|
|
if ($params['widthClass'] == 'inside-modal') {
|
|
|
$html->attrs['style'] = 'width:98%;';
|