From: Kevin P. Fleming Date: Wed, 22 Jun 2005 19:20:31 +0000 (+0000) Subject: fix goto examples (bug #4578) X-Git-Tag: 1.2.0-beta1~409 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f764db2e5bceea91db21468fb6e11aa927237a02;p=thirdparty%2Fasterisk.git fix goto examples (bug #4578) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5973 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/doc/README.ael b/doc/README.ael index ec2d7983bf..b1b72d837b 100755 --- a/doc/README.ael +++ b/doc/README.ael @@ -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); };