diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-10-15 03:00:26 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-10-15 03:00:26 +0200 |
commit | 6c3da38a250c381dbcb1244c672b59a2090d7054 (patch) | |
tree | b4eaa2b203c41400d07283def6f83f72b30651a0 /template | |
parent | fc99fef185a7877acb98613b60586c7f491444db (diff) | |
download | bugzilla-6c3da38a250c381dbcb1244c672b59a2090d7054.tar.gz bugzilla-6c3da38a250c381dbcb1244c672b59a2090d7054.tar.xz |
Bug 604107: The link to delete the value 0 of custom fields is broken
r/a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/table.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl index 706e7d75a..40c66f109 100644 --- a/template/en/default/admin/table.html.tmpl +++ b/template/en/default/admin/table.html.tmpl @@ -143,7 +143,7 @@ [% link_uri = contentlink %] [% WHILE link_uri.search('%%(.+?)%%')%] [% FOREACH m = link_uri.match('%%(.+?)%%') %] - [% IF row.$m %] + [% IF row.$m.defined %] [% replacement_value = FILTER uri; row.$m; END %] [% ELSE %] [% replacement_value = "" %] |