mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 02:26:38 -04:00
Thanks to Mokhi for review latest 5.0.x PR's and patches! Security: CVE-2016-2803 Security: 036d6c38-1c5b-11e6-b9e0-20cf30e32f6d
22 lines
521 B
Perl
22 lines
521 B
Perl
# Bug 1235395 - whine.pl broken due to a missing generate_email() routine
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=1235395
|
|
# Status: Upstreamed, pending next release
|
|
|
|
--- whine.pl.orig 2015-12-22 21:22:11 UTC
|
|
+++ whine.pl
|
|
@@ -13,14 +13,13 @@
|
|
use 5.10.1;
|
|
use strict;
|
|
use warnings;
|
|
-
|
|
use lib qw(. lib);
|
|
|
|
use Bugzilla;
|
|
use Bugzilla::Constants;
|
|
use Bugzilla::Search;
|
|
use Bugzilla::User;
|
|
-use Bugzilla::Mailer;
|
|
+use Bugzilla::Mailer qw(MessageToMTA generate_email);
|
|
use Bugzilla::Util;
|
|
use Bugzilla::Group;
|
|
|