This commit is contained in:
2025-05-13 10:48:16 -07:00
parent 6f1878d09c
commit 7500b3faf6

View File

@@ -110,11 +110,10 @@ return [
"vc_empty_space" => function () {
return "";
},
"vc_raw_html" => function ($attr) {
$text = $attr["text"] ?? "";
"vc_raw_html" => function ($attr, $content) {
$raw = "";
if (strlen($text) > 0) {
$raw = base64_decode($text);
if (strlen($content) > 0) {
$raw = base64_decode($content);
}
return $raw;
},