diff options
author | lpsolit%gmail.com <> | 2009-01-02 15:12:32 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2009-01-02 15:12:32 +0100 |
commit | 2dea5418e3b4f7a5ae50462730171eef58f9b766 (patch) | |
tree | ee1246735de483a5291aac57a6573e5ae57d77d0 /template | |
parent | f6c2d743d87f86cdc206ab4bc772639b4569eebe (diff) | |
download | bugzilla-2dea5418e3b4f7a5ae50462730171eef58f9b766.tar.gz bugzilla-2dea5418e3b4f7a5ae50462730171eef58f9b766.tar.xz |
Post-checkin fix for bug 313126 (better wording when the classification description is removed)
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/messages.html.tmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index f72acff1a..c8e4dd225 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -198,7 +198,11 @@ <li>Name updated to '[% classification.name FILTER html %]'</li> [% END %] [% IF changes.description.defined %] - <li>Description updated to '[% classification.description FILTER html %]'</li> + [% IF classification.description %] + <li>Description updated to '[% classification.description FILTER html %]'</li> + [% ELSE %] + <li>Description removed</li> + [% END %] [% END %] [% IF changes.sortkey.defined %] <li>Sortkey updated to '[% classification.sortkey FILTER html %]'</li> |