diff options
author | dklawren <dklawren@users.noreply.github.com> | 2018-06-05 16:33:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-05 16:33:51 +0200 |
commit | 1eac46993cd9ddb2e6ec6f5a443c002c5544a790 (patch) | |
tree | 83aab2ed50342254da4355195374ba8b0151bfb8 | |
parent | cb7ced68adc539b928198c92df21e30e51f41518 (diff) | |
download | bugzilla-1eac46993cd9ddb2e6ec6f5a443c002c5544a790.tar.gz bugzilla-1eac46993cd9ddb2e6ec6f5a443c002c5544a790.tar.xz |
Bug 1466122 - Change "Reviews Requested of You" to show results are from Phabricator and not from BMO
-rw-r--r-- | extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl b/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl index a81a5903b..5c372db3c 100644 --- a/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl +++ b/extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl @@ -129,7 +129,7 @@ [% BLOCK requests_table %] <div id="[% name FILTER html %]_container" class="requests"> - <div class="query_heading">[% title FILTER html %]</div> + <div class="query_heading">[% title FILTER html_light %]</div> <span id="[% name FILTER html %]_loading" class="items_found">Loading...</span> <span id="[% name FILTER html %]_count_refresh" class="bz_default_hidden"> <span class="items_found" id="[% name FILTER html %]_flags_found">0 reviews found</span> @@ -143,7 +143,8 @@ [% ## no-008filter # requires PhabBugz extension IF Param('phabricator_enabled'); - PROCESS requests_table name='reviews' title='Reviews Requested of You'; + title = '<a href="' _ Param('phabricator_base_uri') _ '">Phabricator</a> Reviews Requested of You'; + PROCESS requests_table name='reviews' title=title; END; PROCESS requests_table name='requestee' title='Flags Requested of You'; |