summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-08-01 21:00:38 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-08-01 21:21:18 +0200
commit56b5023bd1f633b14fb520a2e02188640a901161 (patch)
treeaaeafd9ccf35e9791d4980124c0db7056deb5729 /extensions
parent65fafdee632ad4794f59b745e3130caa7a21ee58 (diff)
downloadbugzilla-56b5023bd1f633b14fb520a2e02188640a901161.tar.gz
bugzilla-56b5023bd1f633b14fb520a2e02188640a901161.tar.xz
Fixed warnings generated by t/011pod.t
Diffstat (limited to 'extensions')
-rw-r--r--extensions/BMO/lib/WebService.pm8
-rw-r--r--extensions/MyDashboard/lib/TimeAgo.pm4
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<Errors>
-=over
-
-=back
-
=item B<History>
=over
@@ -193,10 +189,6 @@ A hash of Bugzilla login names. Each name points to an array of bug ids that the
=item B<Errors>
-=over
-
-=back
-
=item B<History>
=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<time> function