diff --git a/uw_fdsu_theme_resp.theme b/uw_fdsu_theme_resp.theme index dfe602d6395b050a00f71457181b6a32dedbb091..554052174fc9b28b542f9223de3aeb3af4bd6ef5 100644 --- a/uw_fdsu_theme_resp.theme +++ b/uw_fdsu_theme_resp.theme @@ -44,6 +44,12 @@ function uw_fdsu_theme_resp_preprocess_html(&$variables) { $variables['#attached']['library'][] = 'uw_fdsu_theme_resp/user.login'; break; + // The header/page title on contributors listing page browser + // tab shows "Reference author: " in front of the author's name. + case 'entity.bibcite_contributor.canonical': + $variables['head_title']['title'] = t('Reference author:') . ' ' . $variables['head_title']['title']; + break; + } }