From a98d6ed14fd57fb10aff5dcfa1f83bc014322104 Mon Sep 17 00:00:00 2001 From: Aqeel Abbas Date: Sun, 12 Jul 2026 17:50:37 +0500 Subject: [PATCH] func_strings: Fix syntax error in STRBETWEEN documentation example The STRBETWEEN function documentation example was missing a closing brace in the SendDTMF call. Corrected the syntax to ensure the dialplan example is functional. --- funcs/func_strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/funcs/func_strings.c b/funcs/func_strings.c index 8d4e46a15e..d184d4b3cd 100644 --- a/funcs/func_strings.c +++ b/funcs/func_strings.c @@ -196,7 +196,7 @@ AST_THREADSTORAGE(tmp_buf); The replacement only occurs in the output. The original variable is not altered. same => n,Set(digits=5551212) - same => n,SendDTMF(${STRBETWEEN(digits,w)) ; this will send 5w5w5w1w2w1w2 + same => n,SendDTMF(${STRBETWEEN(digits,w)}) ; this will send 5w5w5w1w2w1w2