Commit 95b94d0ef1 for asterisk.org
commit 95b94d0ef177ce8a99ecc40855f9e3b1f58fedec
Author: Aqeel Abbas <mbook3902@gmail.com>
Date: Sun Jul 12 17:50:37 2026 +0500
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.
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);
<note><para>The replacement only occurs in the output. The original variable is not altered.</para></note>
<example title="Add half-second pause between dialed digits">
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
</example>
</description>
</function>