diff options
author | lpsolit%gmail.com <> | 2009-07-24 20:56:57 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-07-24 20:56:57 +0200 |
commit | 52431f63dc3cdc29400e12a7c63dabb496e57b6c (patch) | |
tree | 25bebdbdd23e2769a752951b530dc209473f25ec /Bugzilla/Install | |
parent | 47990ac5f68b5e834fcc94e0fb7d62b87eb8abd5 (diff) | |
download | bugzilla-52431f63dc3cdc29400e12a7c63dabb496e57b6c.tar.gz bugzilla-52431f63dc3cdc29400e12a7c63dabb496e57b6c.tar.xz |
Bug 457524: Reports don't calculate totals correctly if one of the axes contain utf-8 data
and
Bug 469794: On windows, export bug list to CSV breaks because of extra line breaks
Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index f8fe2bbc8..8dc4164ad 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -102,10 +102,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 => '2.22' }, { package => 'Email-Send', |