Lift Ban popping open User Profile

b94

Member
Affected version
2.3.6
While testing 2.3.6 (but this seems to even happen in much older versions) a moderator reported that the "Lift Ban" feature from a user's profile was popping open the user's profile popup, with no lift of the ban or further ban prompts occurring. This seemed to be happening on all of our moderator roles.

It appears that the lift ban button links to a url like /members/{id}/ban/lift which when opened in a new tab also redirects to the user's profile, but in the form members/{name}.{id}/

If I instead go to members/{name}.{id}/ban/lift manually, I can view the correct confirmation form for lifting a ban.

What could be causing this, and is it an XF bug?
 
Last edited:
It appears this can be fixed by changing this part of the template member_ban_edit:
Code:
<xf:button href="{{ link('members/ban/lift', $userBan) }}" overlay="true">

To this:
Code:
<xf:button href="{{ link('members/ban/lift', $user) }}" overlay="true">
 
Back
Top Bottom