Bug 62000: File attachments don't work on Windows. Note: only the code from the patch was checked in, the

documentation issue was split to bug 155743.
2xr=bbaetz
This commit is contained in:
jouni%heikniemi.net 2002-07-04 09:12:33 +00:00
Родитель 74e4345f7a
Коммит af5b114ee0
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,12 @@ use vars qw(
$vars
);
# Win32 specific hack to avoid a hang when creating/showing an attachment
if ($^O eq 'MSWin32') {
binmode(STDIN);
binmode(STDOUT);
}
# Include the Bugzilla CGI and general utility library.
require "CGI.pl";