--- trunk/bin/irc-logger.pl 2007/12/16 18:51:05 71 +++ trunk/bin/irc-logger.pl 2007/12/16 19:03:35 72 @@ -972,9 +972,8 @@ if ($request->url =~ m#/rss#i) { my $type = 'RSS'; # Atom - my $url = "http://$http_hostname:$http_port"; - $response->content_type("application/$type+xml"); + $response->content_type( 'application/' . lc($type) . '+xml' ); my $html = ''; warn "create $type feed from ",dump( @last_tags ); @@ -982,7 +981,7 @@ my $feed = XML::Feed->new( $type ); $feed->title( "last $last_x_tags from $CHANNEL" ); - $feed->link( "http://$http_hostname:$http_port" ); +# $feed->link( "http://$http_hostname:$http_port" ); $feed->description( "collects messages which have tags// in them" ); foreach my $m ( @last_tags ) {