From bc59782171e5b568428da249737fddfbf2678429 Mon Sep 17 00:00:00 2001 From: hanakin Date: Thu, 13 Aug 2020 20:38:30 -1000 Subject: [PATCH] [ticket/16237] move color from functions PHPBB3-16237 --- phpBB/includes/functions.php | 2 +- phpBB/styles/prosilver/template/navbar_header.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 15f7924a77..b0f3f3caf2 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -3933,7 +3933,7 @@ function page_header($page_title = '', $display_online_list = false, $item_id = 'CURRENT_USER_AVATAR' => phpbb_get_user_avatar($user->data), 'CURRENT_USERNAME_SIMPLE' => get_username_string('no_profile', $user->data['user_id'], $user->data['username'], $user->data['user_colour']), 'CURRENT_USERNAME_FULL' => get_username_string('full', $user->data['user_id'], $user->data['username'], $user->data['user_colour']), - 'CURRENT_USER_GROUP_COLOR' => ' color: #' . $user->data['user_colour'], + 'CURRENT_USER_GROUP_COLOR' => $user->data['user_colour'], 'UNREAD_NOTIFICATIONS_COUNT' => ($notifications !== false) ? $notifications['unread_count'] : '', 'NOTIFICATIONS_COUNT' => ($notifications !== false) ? $notifications['unread_count'] : '', 'U_VIEW_ALL_NOTIFICATIONS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications'), diff --git a/phpBB/styles/prosilver/template/navbar_header.html b/phpBB/styles/prosilver/template/navbar_header.html index 9c126887e2..88807f9c16 100644 --- a/phpBB/styles/prosilver/template/navbar_header.html +++ b/phpBB/styles/prosilver/template/navbar_header.html @@ -112,7 +112,7 @@ {% if CURRENT_USER_AVATAR %}{{ CURRENT_USER_AVATAR }} {% endif %} {{ CURRENT_USERNAME_SIMPLE }} - {{ Icon('iconify', 'fa:caret-down', '', true, '', {'style': CURRENT_USER_GROUP_COLOR}) }} + {{ Icon('iconify', 'fa:caret-down', '', true, '', {'style': 'color: #' ~ CURRENT_USER_GROUP_COLOR}) }}