diff options
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> |