From 380a2b322ce36100222b149207cceda9aab5ad61 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Tue, 29 Jun 2010 06:50:49 +0000 Subject: [PATCH] Factoid HTML export table now fits width appropriately --- PBot/Factoids.pm | 4 ++-- PBot/VERSION.pm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PBot/Factoids.pm b/PBot/Factoids.pm index 6796e17b..3cf08f8c 100644 --- a/PBot/Factoids.pm +++ b/PBot/Factoids.pm @@ -138,9 +138,9 @@ sub export_factoids { print FILE "\n"; } - print FILE "$trigger is " . encode_entities($self->factoids->hash->{$channel}->{$trigger}->{action}) . "\n"; + print FILE "$trigger is " . encode_entities($self->factoids->hash->{$channel}->{$trigger}->{action}) . "\n"; - print FILE "- submitted by " . $self->factoids->hash->{$channel}->{$trigger}->{owner} . "
" . localtime($self->factoids->hash->{$channel}->{$trigger}->{created_on}) . "\n\n\n"; + print FILE "- submitted by " . $self->factoids->hash->{$channel}->{$trigger}->{owner} . "
" . localtime($self->factoids->hash->{$channel}->{$trigger}->{created_on}) . "\n\n\n"; } } print FILE "\n"; diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 30f240f6..4ab7b487 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 => 213, + BUILD_REVISION => 214, BUILD_DATE => "2010-06-28", };