Fixed for next version, I've got some other bugfixes to release so might be out on Monday.
Fixed for next version, I've got some other bugfixes to release so might be out on Monday.
- Fix typo in option description
- Improve robustness of allowing a user to cancel a pending account self-disable
- Fix
[UserEss] Warn posts in own threadpermission could allow a thread starter to warn themselves
- Note; this permission requires Warning Improvements to allow non-moderators access to the warning feature
- Fix not all supported content types actually worked for content mention tracking (reports/conversation/XFRM/XFMG)
- Fix rebuilding content mentions from admincp would rebuild all mentions instead of just the selected type
Yes, typo has been fixedShould the version number be 4.5.10?
xf_user_change_log has the past year of changes and useress_unc has all username changesxf_username_change has the past year of username changes and xf_sv_unc has all username changesxf_username_change but I haven't been able to locate a setting for username change log length.
- Require StandardLib v1.23.0+
- Fix enabling "Display mini-avatars" would break User Mention Improvements copy&paste support of user-group mentions
- Fix copy&paste of user groups & user mentions when "Display mini-avatars" was enabled would paste the avatar when it shouldn't
- When
Send edited in mentions...
- Fix disabling
Rich text user mentionsoption didn't work
- Fix
Display mini-avatarsoption did not apply when rendered for email/api/signature
- php 8.4+ compatibility fixes
- Fix rebuild mention job for XFRM
sv_ue_account_wrapper_self_disable template for how it renders the self-disable link.canSelfDisable() function is quite simple:public function canSelfDisable()
{
if ($this->is_admin || $this->is_moderator)
{
return false;
}
if (!$this->hasPermission('general', 'svSelfDisable'))
{
return false;
}
return true;
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.