Not a bug Just for the heck of it, I fixed a little beauty error :)

Vincent

Well-known member
As it is now, when you warn a user by the "Warn" button at a post, it shows
content.webp

When you warn a user via the member card/profile, it will show "Content: [username]"
Now, as a name is not content, I think this should be "User: [username]" :P

Here's the fix, in member_warn, change
Code:
<dt>{xen:phrase content}:</dt>

to

Code:
<dt><xen:if is="{$canWarnPublicly}">{xen:phrase content}<xen:else />{xen:phrase user}</xen:if>:</dt>

You may call this Not a Bug or unnecessary, but the small things count too :)
 
Top Bottom