diff options
author | Byron Jones <glob@mozilla.com> | 2015-07-28 08:42:27 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2015-07-28 08:42:27 +0200 |
commit | bcccce4c7086f4e2f70340887d9ebe4085bf67c4 (patch) | |
tree | d37d6de706921023bb41eebdebb5a0b6aec7636d /extensions/BugModal | |
parent | 61efd94060363e2734270a73c2070f3d639cb284 (diff) | |
download | bugzilla-bcccce4c7086f4e2f70340887d9ebe4085bf67c4.tar.gz bugzilla-bcccce4c7086f4e2f70340887d9ebe4085bf67c4.tar.xz |
Bug 1188246 - "fixed in" message only looks for "fixed" in tracking flags, should also check for "verified"
Diffstat (limited to 'extensions/BugModal')
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl index 8a3652673..9d7588641 100644 --- a/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/edit.html.tmpl @@ -106,7 +106,7 @@ END; IF status_value != "---"; blurb = blurb _ " " _ status_value; - IF status_value == "fixed"; + IF status_value == "fixed" || status_value == "verified"; flag_name = row.name; IF flag_name.substr(0, 7) == "firefox"; IF firefox_fixed_versions.0 == ""; |