From c32a4da7f66a9fefd68229d98ecdb01ce6394d04 Mon Sep 17 00:00:00 2001 From: raviks789 Date: Thu, 22 May 2025 12:47:41 +0200 Subject: [PATCH] CustomVariableString: Render variables explicitily if the name is in between $ symbols --- library/Director/CustomVariable/CustomVariableString.php | 1 - 1 file changed, 1 deletion(-) diff --git a/library/Director/CustomVariable/CustomVariableString.php b/library/Director/CustomVariable/CustomVariableString.php index f2d9e0f3..143bf6ad 100644 --- a/library/Director/CustomVariable/CustomVariableString.php +++ b/library/Director/CustomVariable/CustomVariableString.php @@ -51,7 +51,6 @@ class CustomVariableString extends CustomVariable if ( str_starts_with($value, '$') && str_ends_with($value, '$') - && str_contains($value, 'vars.') ) { $whiteList[] = trim($value, '$'); }