aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-29 14:10:23 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-29 14:10:23 +0000
commit13e6bfefc1dfd8b09a11d316cbf8ee0603120483 (patch)
treea468f97065014d259c1cf530bc7d45244790b2ad /pbx.c
parent06a33fdfadf67a2de6c0e2bce146fc96fb1d562b (diff)
Bug 6835 - Updates to GotoIf help text
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@16082 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rw-r--r--pbx.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/pbx.c b/pbx.c
index 7851f3d37..d1da3a498 100644
--- a/pbx.c
+++ b/pbx.c
@@ -324,11 +324,13 @@ static struct pbx_builtin {
{ "GotoIf", pbx_builtin_gotoif,
"Conditional goto",
- " GotoIf(Condition?[label1]:[label2]): This application will cause the calling\n"
- "channel to jump to the speicifed location in the dialplan based on the\n"
- "evaluation of the given condition. The channel will continue at 'label1' if the\n"
- "condition is true, or 'label2' if the condition is false. The labels are\n"
- "specified in the same syntax that is used with the Goto application.\n"
+ " GotoIf(condition?[labeliftrue]:[labeliffalse]): This application will cause\n"
+ "the calling channel to jump to the specified location in the dialplan based on\n"
+ "the evaluation of the given condition. The channel will continue at\n"
+ "'labeliftrue' if the condition is true, or 'labeliffalse' if the condition is\n"
+ "false. The labels are specified with the same syntax as used within the Goto\n"
+ "application. If the label chosen by the condition is omitted, no jump is\n"
+ "performed, but execution continues with the next priority in the dialplan.\n"
},
{ "GotoIfTime", pbx_builtin_gotoiftime,