From: lpsolit%gmail.com <> Date: Fri, 24 Jul 2009 19:03:07 +0000 (+0000) Subject: Bug 469794: On windows, export bug list to CSV breaks because of extra line breaks... X-Git-Tag: bugzilla-3.2.5~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38913a9005bc9c25f2cafdd733fe9e35b13b234c;p=thirdparty%2Fbugzilla.git Bug 469794: On windows, export bug list to CSV breaks because of extra line breaks - Patchby Frédéric Buclin r/a=mkanat --- diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 9c021cda15..97a7c3d922 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -79,10 +79,12 @@ sub REQUIRED_MODULES { module => 'DBI', version => '1.41' }, + # 2.22 fixes various problems related to UTF8 strings in hash keys, + # as well as line endings on Windows. { package => 'Template-Toolkit', module => 'Template', - version => '2.15' + version => ON_WINDOWS ? '2.22' : '2.15' }, { package => 'Email-Send',