-
Type:
Bug
-
Status: Closed
-
Resolution: Duplicate
-
Affects Version/s: 6.1.X EE
-
Fix Version/s: 6.1.X EE, 6.2.0 CE GA1
-
Component/s: Legacy, Legacy > API
-
Labels:None
-
Fix Priority:3
Creating this issue based on email exchange with Aldo De Vleeschauwer:
With the SAML plugin installed, the title of the Browser when in any Control Panel page becomes "SAML Keep Alive ...". This appears to be caused by specific logic for Control Panel which takes the name of the Portlet that was last included, in render_portlet.jsp. In this case it is always the SAML portlet through "layout.static.portlets.all". We have fixed as follows:
if ((layout.isTypePanel() || layout.isTypeControlPanel()) && !portletDisplay.getId().equals(PortletKeys.CONTROL_PANEL_MENU)) { // Aldo - Check if this is a statically added portlet boolean setTitle = true; for (String staticPortletId : PropsValues.LAYOUT_STATIC_PORTLETS_ALL) { if (portletId.equals(staticPortletId)) { setTitle = false; break; } } if (setTitle) { PortalUtil.setPageTitle(portletDisplay.getTitle(), request); } }
- duplicates
-
LPS-39601 Chat - When navigating to Admin, the window title has "Chat" appended to the end of the title after the chat plugin is deployed
- Closed