CustomVariableString: Render variables explicitily if the name is in between $ symbols

This commit is contained in:
raviks789 2025-05-22 12:47:41 +02:00
parent 0a6891bcde
commit c32a4da7f6
No known key found for this signature in database

View File

@ -51,7 +51,6 @@ class CustomVariableString extends CustomVariable
if (
str_starts_with($value, '$')
&& str_ends_with($value, '$')
&& str_contains($value, 'vars.')
) {
$whiteList[] = trim($value, '$');
}