diff options
author | 2009-07-28 21:49:06 +0000 | |
---|---|---|
committer | 2009-07-28 21:49:06 +0000 | |
commit | 133e118a5d2bb59f3d52601f3dcae8aa39259ab7 (patch) | |
tree | 4b9e056b457ca22b7024e6a76934172531d9da99 /template/en/default/pages/release-notes.html.tmpl | |
parent | Bug 503290: Email::Send 2.196 has a bug in the SMTP module - Patch by Fréd... (diff) | |
download | bugzilla-133e118a5d2bb59f3d52601f3dcae8aa39259ab7.tar.gz bugzilla-133e118a5d2bb59f3d52601f3dcae8aa39259ab7.tar.bz2 bugzilla-133e118a5d2bb59f3d52601f3dcae8aa39259ab7.zip |
Bug 380267: Release notes for 3.0 don't flag new MySQL version requirement as changed from 2.22 - Patch by Frédéric Buclin <LpSolit@gmail.com>
Diffstat (limited to 'template/en/default/pages/release-notes.html.tmpl')
-rw-r--r-- | template/en/default/pages/release-notes.html.tmpl | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/template/en/default/pages/release-notes.html.tmpl b/template/en/default/pages/release-notes.html.tmpl index 7d2094a70..47f431115 100644 --- a/template/en/default/pages/release-notes.html.tmpl +++ b/template/en/default/pages/release-notes.html.tmpl @@ -320,9 +320,9 @@ <li>Perl v<strong>5.8.1</strong> (Windows platforms)</li> </ul> -[% PROCESS db_req db='mysql' %] +[% INCLUDE db_req db='mysql' db_new = 1 %] -[% PROCESS db_req db='pg' %] +[% INCLUDE db_req db='pg' %] <h3><a name="v30_req_modules"></a>Required Perl Modules</h3> @@ -982,7 +982,10 @@ sub y { $var++ }</pre> Users</h3> <ul> - <li>[% m.name FILTER html %] v[% m.db_version FILTER html %]</li> + <li>[% m.name FILTER html %] + [%+ '<span class="req_new">' IF db_new %]v[% m.db_version FILTER html %] + [% '</span>' IF db_new %] + </li> <li><strong>perl module:</strong> [%+ m.dbd.module FILTER html %] v[% m.dbd.version FILTER html %]</li> </ul> |