diff options
author | byron jones <byron@glob.com.au> | 2018-03-13 15:45:40 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-03-13 15:45:40 +0100 |
commit | 6422bd9756041fee92b5df952f8feb6065525ce8 (patch) | |
tree | 13730588c9c2f41e0aef7b0c84f4a2f690b6e251 | |
parent | 3698ab542ac64fc52a59d1f9e5855893cae87184 (diff) | |
download | bugzilla-6422bd9756041fee92b5df952f8feb6065525ce8.tar.gz bugzilla-6422bd9756041fee92b5df952f8feb6065525ce8.tar.xz |
Bug 1445066 - Clicking "Last search results" sometimes results in an error
-rw-r--r-- | extensions/BugModal/template/en/default/bug_modal/navigate.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/BugModal/template/en/default/bug_modal/navigate.html.tmpl b/extensions/BugModal/template/en/default/bug_modal/navigate.html.tmpl index 05476fed4..06163a841 100644 --- a/extensions/BugModal/template/en/default/bug_modal/navigate.html.tmpl +++ b/extensions/BugModal/template/en/default/bug_modal/navigate.html.tmpl @@ -29,14 +29,14 @@ [% INCLUDE nav_link text="Next ❱" bug_id="" %] [% END %] [% INCLUDE nav_link text="Last ❱❱" bug_id=last_bug_list.last %] - <a id="search-nav-reget" href="buglist.cgi?regetlastlist=[% my_search.id FILTER uri %]">Last search results</a> + <a id="search-nav-reget" href="buglist.cgi?regetlastlist=[% search.id FILTER uri %]">Last search results</a> </div> [% BLOCK nav_link %] [% IF bug_id == "" %] <span class="search-nav-disabled">[% text FILTER none %]</span> [% ELSE %] - <a class="search-nav-link" href="show_bug.cgi?id=[% bug_id FILTER uri %]&list_id=[% my_search.id FILTER uri %]"> + <a class="search-nav-link" href="show_bug.cgi?id=[% bug_id FILTER uri %]&list_id=[% search.id FILTER uri %]"> [%~ text FILTER none ~%] </a> [% END %] |