Subject: | Undefined subroutine CGI::RSS::start_rss |
I use your module with CGI:Fast and your latest version seems
incompatible with it:
perl -e 'use CGI::Fast ;use CGI::RSS; new CGI::Fast; my $r = new
CGI::RSS; print $r->header, $r->begin_rss;'
gives Undefined subroutine CGI::RSS::start_rss
at -e line 1
If I omit the new CGI::Fast, then it works:
perl -e 'use CGI::Fast ;use CGI::RSS; my $r = new CGI::RSS; print $r-
Show quoted text
>header, $r->begin_rss;'
Content-Type: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel>
perl -MCGI::RSS -e 'print CGI::RSS->VERSION;'
0.9654