diff options
author | lpsolit%gmail.com <> | 2006-07-19 08:49:52 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-19 08:49:52 +0200 |
commit | b9c7dd465063509725ffff7df66cd70276000e44 (patch) | |
tree | ec32277d6d9acf0860679e1f1d78e6f751537cbf /template/en/default | |
parent | fbf78711a9aca674dd1a2fa374e6501d1212531b (diff) | |
download | bugzilla-b9c7dd465063509725ffff7df66cd70276000e44.tar.gz bugzilla-b9c7dd465063509725ffff7df66cd70276000e44.tar.xz |
Bug 313125: Implement validations and database persistence functions for Versions.pm and clean-up editversions.cgi - Patch by André Batosti <batosti@async.com.br> r=LpSolit a=myk
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/admin/versions/updated.html.tmpl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/template/en/default/admin/versions/updated.html.tmpl b/template/en/default/admin/versions/updated.html.tmpl index 5bae6bcf6..8f679c4aa 100644 --- a/template/en/default/admin/versions/updated.html.tmpl +++ b/template/en/default/admin/versions/updated.html.tmpl @@ -25,7 +25,7 @@ # version: object; Bugzilla::Version object representing the # version the user updated. # - # updated_name: boolean; defined if the 'name' field was updated + # updated: boolean; defined if the 'name' field was updated #%] [% title = BLOCK %]Updating Version '[% version.name FILTER html %]' of Product @@ -34,11 +34,9 @@ title = title %] -[% IF updated_name %] +[% IF updated %] <p>Updated Version name to: '[% version.name FILTER html %]'.</p> -[% END %] - -[% UNLESS updated_name %] +[% ELSE %] <p>Nothing changed for version '[% version.name FILTER html %]'. [% END %] |