1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Custom-fields raw mode was missing for types textarea and bbarea.

This commit is contained in:
Cameron
2021-06-07 08:43:41 -07:00
parent a6e287d680
commit 157a35a5e7

View File

@@ -235,7 +235,7 @@
case 'textarea':
case 'bbarea':
$ret = $tp->toHTML($value, true, 'BODY');
$ret = ($raw) ? $value : $tp->toHTML($value, true, 'BODY');
break;
@@ -266,7 +266,7 @@
break;
default:
$ret = $tp->toHTML($value);
$ret = ($raw) ? $value : $tp->toHTML($value);
}