fix goto examples (bug #4578)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5973 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-06-22 19:20:31 +00:00
parent 5a80cd988f
commit f764db2e5b

View File

@@ -217,30 +217,30 @@ instructions:
}; };
2 => { 2 => {
Background(demo-moreinfo); Background(demo-moreinfo);
goto instructions; goto s|instructions;
}; };
3 => { 3 => {
LANGUAGE()=fr; LANGUAGE()=fr;
goto restart; goto s|restart;
}; };
500 => { 500 => {
Playback(demo-abouttotry); Playback(demo-abouttotry);
exten => 500,n,Dial(IAX2/guest@misery.digium.com) Dial(IAX2/guest@misery.digium.com);
Playback(demo-nogo); Playback(demo-nogo);
goto instructions; goto s|instructions;
}; };
600 => { 600 => {
Playback(demo-echotest); Playback(demo-echotest);
Echo(); Echo();
Playback(demo-echodone); Playback(demo-echodone);
goto instructions; goto s|instructions;
}; };
# => { # => {
hangup: hangup:
Playback(demo-thanks); Playback(demo-thanks);
Hangup(); Hangup();
}; };
t => goto hangup; t => goto #|hangup;
i => Playback(invalid); i => Playback(invalid);
}; };