]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1466122 - Change "Reviews Requested of You" to show results are from Phabricator...
authordklawren <dklawren@users.noreply.github.com>
Tue, 5 Jun 2018 14:33:51 +0000 (10:33 -0400)
committerGitHub <noreply@github.com>
Tue, 5 Jun 2018 14:33:51 +0000 (10:33 -0400)
extensions/MyDashboard/template/en/default/pages/mydashboard.html.tmpl

index a81a5903b7727a5dbe2a6e2f7fa07c715b540b7d..5c372db3c391c4b785dd6753f2e34f5b80c82084 100644 (file)
 
       [% 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>
       [% ## 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';