diff options
author | gerv%gerv.net <> | 2003-07-04 05:33:31 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2003-07-04 05:33:31 +0000 |
commit | cc1c75fae1c73b3736698cd1de180b2f0628e07a (patch) | |
tree | 6369bbc2113b2fd7d0b7b720655ed03d5f1f770d | |
parent | 00277eed8a6ceb31893fc131d38261af857d5000 (diff) | |
download | bugs-cc1c75fae1c73b3736698cd1de180b2f0628e07a.tar bugs-cc1c75fae1c73b3736698cd1de180b2f0628e07a.tar.gz bugs-cc1c75fae1c73b3736698cd1de180b2f0628e07a.tar.bz2 bugs-cc1c75fae1c73b3736698cd1de180b2f0628e07a.tar.xz bugs-cc1c75fae1c73b3736698cd1de180b2f0628e07a.zip |
Bug 13540 - change filters to cope with new terms.* code.
-rw-r--r-- | template/en/default/filterexceptions.pl | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 6a7217d76..ba626a21b 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -311,10 +311,6 @@ 'h3', 'message', ], -'global/hidden-fields.html.tmpl' => [ - 'mvalue | html | html_linebreak', # Need to eliminate | usage - 'field.value | html | html_linebreak', -], 'global/messages.html.tmpl' => [ 'parameters', @@ -385,7 +381,7 @@ ], 'bug/dependency-tree.html.tmpl' => [ - 'hide_resolved ? "Open b" : "B"', + 'hide_resolved ? "Open $terms.bugs" : "$terms.Bugs"', 'bugid', 'maxdepth', 'dependson_ids.join(",")', @@ -400,7 +396,7 @@ 'maxdepth == 0 || maxdepth == realdepth ? "disabled" : ""', 'realdepth < 2 || ( maxdepth && maxdepth < 2 ) ? "disabled" : ""', 'maxdepth > 0 && maxdepth <= realdepth ? maxdepth : ""', - 'maxdepth == 1 ? 1 + 'maxdepth == 1 ? 1 : ( maxdepth ? maxdepth - 1 : realdepth - 1 )', 'realdepth < 2 || ! maxdepth || maxdepth >= realdepth ? "disabled" : ""', @@ -420,7 +416,7 @@ 'bug.${dep.fieldname}.join(\', \')', 'selname', 'depbug FILTER bug_link(depbug)', - '"bug ${bug.dup_id}" FILTER bug_link(bug.dup_id)', + '"${bug.dup_id}" FILTER bug_link(bug.dup_id)', ], 'bug/navigate.html.tmpl' => [ @@ -585,6 +581,8 @@ 'item', # 'type.sortkey || 1', '(last_action == "enter" || last_action == "copy") ? "Create" : "Save Changes"', + 'typeLabelLowerPlural', + 'typeLabelLowerSingular', ], 'admin/flag-type/list.html.tmpl' => [ |