Skip to content
Snippets Groups Projects
Commit f764db2e authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

fix goto examples (bug #4578)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5973 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 5a80cd98
No related branches found
No related tags found
No related merge requests found
......@@ -217,30 +217,30 @@ instructions:
};
2 => {
Background(demo-moreinfo);
goto instructions;
goto s|instructions;
};
3 => {
LANGUAGE()=fr;
goto restart;
goto s|restart;
};
500 => {
Playback(demo-abouttotry);
exten => 500,n,Dial(IAX2/guest@misery.digium.com)
Dial(IAX2/guest@misery.digium.com);
Playback(demo-nogo);
goto instructions;
goto s|instructions;
};
600 => {
Playback(demo-echotest);
Echo();
Playback(demo-echodone);
goto instructions;
goto s|instructions;
};
# => {
hangup:
Playback(demo-thanks);
Hangup();
};
t => goto hangup;
t => goto #|hangup;
i => Playback(invalid);
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment