fix: [single view generic field] allow for unsanitised raw input

cli-modification-summary
iglocska 2022-09-18 18:32:43 +02:00
parent 09ff4eba53
commit 822c96dbf0
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if (!empty($field['url'])) {
h($field['url']),
h($string)
);
} else {
} else if (empty($field['raw'])) {
$string = h($string);
}
echo $string;