Commit d003e02e authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 239885: Don't display the sendmail message if the current platform…

Patch for bug 239885: Don't display the sendmail message if the current platform is Windows; patch by Bruce Armstrong <bruce.armstrong@teamsybase.com>; r=bugreport; a=myk.
parent b1b9352f
...@@ -4281,5 +4281,7 @@ $dbh->do("UPDATE components SET initialowner = $adminuid WHERE initialowner = 0" ...@@ -4281,5 +4281,7 @@ $dbh->do("UPDATE components SET initialowner = $adminuid WHERE initialowner = 0"
unlink "$datadir/versioncache"; unlink "$datadir/versioncache";
print "Reminder: Bugzilla now requires version 8.7 or later of sendmail.\n" unless $silent; if ($^O !~ /MSWin32/i) {
print "Reminder: Bugzilla now requires version 8.7 or later of sendmail.\n" unless $silent;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment