fix: [single view generic field] allow for unsanitised raw input
parent
09ff4eba53
commit
822c96dbf0
|
@ -24,7 +24,7 @@ if (!empty($field['url'])) {
|
|||
h($field['url']),
|
||||
h($string)
|
||||
);
|
||||
} else {
|
||||
} else if (empty($field['raw'])) {
|
||||
$string = h($string);
|
||||
}
|
||||
echo $string;
|
||||
|
|
Loading…
Reference in New Issue