Skip to content

Commit

Permalink
same exact docbug
Browse files Browse the repository at this point in the history
it's worth versioning up over this
  • Loading branch information
jettero committed Apr 6, 2009
1 parent 3e65234 commit ba49e4c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.9501: Mon Apr 6 17:17:51 EDT 2009
- doc bugs

0.95: Mon Apr 6 11:06:15 EDT 2009
- split the pod to a separate file
- my rss does not validate...
Expand Down
2 changes: 1 addition & 1 deletion RSS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use base 'CGI';
use Date::Manip;
use B::Deparse;

our $VERSION = 0.95;
our $VERSION = 0.9501;

BEGIN {
# NOTE: there's voodoo in this block, don't judge me. :(
Expand Down
6 changes: 5 additions & 1 deletion RSS.pod
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@
my $rss = new CGI::RSS;

print $rss->header;
print $rss->begin_rss(title=>"My Feed!", link=>"http://localhost/directory");
print $rss->begin_rss(
title => "My Feed!",
link => "http://localhost/directory",
desc => "My feed is cool!");

while( my $h = $sth->fetchrow_hashref ) {
print $rss->item(
$rss->title ( $h->{title} ),
Expand Down

0 comments on commit ba49e4c

Please sign in to comment.