From 37dca64465a0b010469127e8b5cbdd3befafd4a8 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 12 Oct 2013 13:36:36 +0000 Subject: [PATCH] Add missing closing html tags to quotegrabs html export --- PBot/Quotegrabs.pm | 5 +++-- PBot/VERSION.pm | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/PBot/Quotegrabs.pm b/PBot/Quotegrabs.pm index 07a48ee0..dfbedafc 100644 --- a/PBot/Quotegrabs.pm +++ b/PBot/Quotegrabs.pm @@ -123,12 +123,12 @@ sub export_quotegrabs() { print FILE "\n\n"; print FILE '' . "\n"; print FILE '' . "\n"; - print FILE "Generated at $time

Candide's Quotegrabs

\n"; + print FILE "\nGenerated at $time

Candide's Quotegrabs

\n"; my $i = 0; foreach my $quotegrab (sort { $$a{channel} cmp $$b{channel} or $$a{nick} cmp $$b{nick} } @{ $self->{quotegrabs} }) { if(not $quotegrab->{channel} =~ /^$last_channel$/i) { print FILE "\n\n" if $had_table; - print FILE "

$quotegrab->{channel}


\n"; + print FILE "

$quotegrab->{channel}


\n"; print FILE "\n"; print FILE "\n\n"; print FILE "\n"; @@ -184,6 +184,7 @@ sub export_quotegrabs() { } print FILE "});\n"; print FILE "\n"; + print FILE "\n\n"; close(FILE); return "$i quotegrabs exported to http://blackshell.com/~msmud/candide/quotegrabs.html"; } diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 571a719f..98313d58 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 443, + BUILD_REVISION => 444, BUILD_DATE => "2013-10-12", };
id