diff options
author | lpsolit%gmail.com <> | 2006-04-06 07:58:29 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-04-06 07:58:29 +0200 |
commit | 424ece4d8d183d74d7993023e2846a0724549315 (patch) | |
tree | 083bf0bd8637707ddd92ffc232472b8075f63895 /template/en | |
parent | c8458af4ba895a5614c44fe9f85795f2142efb5a (diff) | |
download | bugzilla-424ece4d8d183d74d7993023e2846a0724549315.tar.gz bugzilla-424ece4d8d183d74d7993023e2846a0724549315.tar.xz |
Bug 332891: Missing SET in admin/table.html.tmpl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=colin a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/table.html.tmpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/admin/table.html.tmpl b/template/en/default/admin/table.html.tmpl index 76ed601d6..29108fd6c 100644 --- a/template/en/default/admin/table.html.tmpl +++ b/template/en/default/admin/table.html.tmpl @@ -104,17 +104,17 @@ [%# Is the override for this row? %] [% IF override.match_value == row.${override.match_field} %] - [% contentlink = override.contentlink + [% SET contentlink = override.contentlink IF override.override_contentlink %] - [% content = override.content + [% SET content = override.content IF override.override_content %] - [% content_use_field = override.content_use_field + [% SET content_use_field = override.content_use_field IF override.override_content_use_field %] - [% align = override.align + [% SET align = override.align IF override.override_align %] - [% allow_html_content = override.allow_html_content + [% SET allow_html_content = override.allow_html_content IF override.override_allow_html_content %] - [% yesno_field = override.yesno_field + [% SET yesno_field = override.yesno_field IF override.override_yesno_field %] [% LAST %] |