mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 06:07:32 +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 'textarea':
|
||||||
case 'bbarea':
|
case 'bbarea':
|
||||||
$ret = $tp->toHTML($value, true, 'BODY');
|
$ret = ($raw) ? $value : $tp->toHTML($value, true, 'BODY');
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
||||||
@@ -266,7 +266,7 @@
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
$ret = $tp->toHTML($value);
|
$ret = ($raw) ? $value : $tp->toHTML($value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user