From 56b5023bd1f633b14fb520a2e02188640a901161 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 1 Aug 2014 19:00:38 +0000 Subject: Fixed warnings generated by t/011pod.t --- extensions/BMO/lib/WebService.pm | 8 -------- extensions/MyDashboard/lib/TimeAgo.pm | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/extensions/BMO/lib/WebService.pm b/extensions/BMO/lib/WebService.pm index cefcde2f6..ed94aabfc 100644 --- a/extensions/BMO/lib/WebService.pm +++ b/extensions/BMO/lib/WebService.pm @@ -148,10 +148,6 @@ A hash of Bugzilla login names. Each name points to an array of bug ids that the =item B -=over - -=back - =item B =over @@ -193,10 +189,6 @@ A hash of Bugzilla login names. Each name points to an array of bug ids that the =item B -=over - -=back - =item B =over diff --git a/extensions/MyDashboard/lib/TimeAgo.pm b/extensions/MyDashboard/lib/TimeAgo.pm index 78badf5fa..0206bfebd 100644 --- a/extensions/MyDashboard/lib/TimeAgo.pm +++ b/extensions/MyDashboard/lib/TimeAgo.pm @@ -110,7 +110,7 @@ DateTime::Duration::Fuzzy -- express dates as fuzzy human-friendly strings use DateTime::Duration::Fuzzy qw(time_ago); use DateTime; - + my $now = DateTime->new( year => 2010, month => 12, day => 12, hour => 19, minute => 59, @@ -121,7 +121,7 @@ DateTime::Duration::Fuzzy -- express dates as fuzzy human-friendly strings ); print time_ago($then, $now); # outputs 'several hours ago' - + print time_ago($then); # $now taken from C