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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user