From 38913a9005bc9c25f2cafdd733fe9e35b13b234c Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Fri, 24 Jul 2009 19:03:07 +0000 Subject: [PATCH] =?utf8?q?Bug=20469794:=20On=20windows,=20export=20bug=20l?= =?utf8?q?ist=20to=20CSV=20breaks=20because=20of=20extra=20line=20breaks?= =?utf8?q?=20-=20Patchby=20Fr=C3=83=C2=A9d=C3=83=C2=A9ric=20Buclin=20=20r/a=3Dmkanat?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- Bugzilla/Install/Requirements.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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', -- 2.47.2