Skip Menu |

This queue is for tickets about the asterisk-perl CPAN distribution.

Report information
The Basics
Id: 50111
Status: resolved
Priority: 0/
Queue: asterisk-perl

People
Owner: Nobody in particular
Requestors: ohiocore [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.01
Fixed in: (no value)



Subject: POD correctness for Asterisk::AGI
perldoc Asterisk::AGI appends notice about two errors: POD ERRORS Hey! The above document had some coding errors, which are explained below: Around line 276: You forgot a ’=back’ before ’=head1’ Around line 278: ’=item’ outside of any ’=over’
Subject: [PATCH] POD correctness for Asterisk::AGI
There was an intervening =head in between =over and =back directives. I added a couple more, and this seems to fix the problem.
diff --git a/lib/Asterisk/AGI.pm b/lib/Asterisk/AGI.pm index c3fdca2..b18ba90 100644 --- a/lib/Asterisk/AGI.pm +++ b/lib/Asterisk/AGI.pm @@ -273,8 +273,12 @@ sub _recurse { return $ret; } +=back + =head1 AGI COMMANDS +=over 4 + =item $AGI->answer() Executes AGI Command "ANSWER"
Thanks for the patch, fix going in release coming out shortly