use Debbugs::MIME qw(convert_to_utf8 decode_rfc1522 create_mime_message);
use Debbugs::CGI qw(:url :html :util);
use Debbugs::Common qw(globify_scalar english_join);
+use Debbugs::Config qw(:config);
use POSIX qw(strftime);
BEGIN{
}
else {
print {$output} "<p>There is no maintainer for $showpkg. ".
- "Please do not report new bugs against this package.</p>\n";
+ "This means that this package no longer exists (or never existed). ".
+ "Please do not report new bugs against this package. </p>\n";
}
my @pkgs = getsrcpkgs($srcforpkg);
@pkgs = grep( !/^\Q$package\E$/, @pkgs );
"list of other pseudo-packages</a>";
}
elsif (not defined $maint and not @{$param{bugs}}) {
- print {$output} "<p>There is no record of the " . html_escape($package) .
- ($param{binary} ? " package" : " source package") .
- ", and no bugs have been filed against it.</p>";
+ # don't bother printing out this information, because it's
+ # already present above.
+ # print {$output} "<p>There is no record of the " . html_escape($package) .
+ # ($param{binary} ? " package" : " source package") .
+ # ", and no bugs have been filed against it.</p>";
}
else {
if ($package and defined $config{package_pages} and length $config{package_pages}) {
Thanks to Martin Krafft.
* Properly handle Forwarded: at submit@ time (closes: #568020). Thanks
to Martin Krafft.
- * Fix source package src: urls
+ * Fix source package src: urls (closes: #567439). Thanks to Paul Wise.
* Use package_maintainer to search for packages maintained by a
maintainer (closes: #556863). Thanks to Yves-Alexis Perez.
* Linkify CVE reports (closes: #568464). Thanks to Martin Zobel-Helas.