Summary
In htdocs/modules/system/themes/cpadmin/theme.tpl, only the $xoops_name branch of the user-panel info block has text-wrap applied to the anchor tag. The fallback branch that renders $xoops_uname (shown when $xoops_name is empty) is missing this class, which can cause the username to overflow the sidebar.
Suggested Fix
- <a href="<{xoAppUrl url='user.php'}>" class="d-block" rel="external">
+ <a href="<{xoAppUrl url='user.php'}>" class="d-block text-wrap" rel="external">
<{$xoops_uname}>
</a>
References
Requested by @GregMage to be tracked as a separate follow-up.
Summary
In
htdocs/modules/system/themes/cpadmin/theme.tpl, only the$xoops_namebranch of the user-panel info block hastext-wrapapplied to the anchor tag. The fallback branch that renders$xoops_uname(shown when$xoops_nameis empty) is missing this class, which can cause the username to overflow the sidebar.Suggested Fix
References
Requested by @GregMage to be tracked as a separate follow-up.