imthebest
Well-known member
For example on this page: https://xenforo.com/community/account/contact-details
On the checkbox labeled "Accept conversations from..." if I translate the phrase "Members Only" to "Registered Users Only" and the user goes to that page and saves it *without changing anything* the user change log for that user will record this:
Btw there is another minor bug: All Visitors != Members Only
And going back to the main bug being reported here, well the problem is that the user change log works comparing the value of the string and thus reporting a change when in fact there is no change. A better approach would be to make it work per ID and not per string i.e. "Members Only" = 1 and "Registered Users Only" = 1
On the checkbox labeled "Accept conversations from..." if I translate the phrase "Members Only" to "Registered Users Only" and the user goes to that page and saves it *without changing anything* the user change log for that user will record this:
Code:
Start conversations with you All Visitors Registered Users Only
Btw there is another minor bug: All Visitors != Members Only
And going back to the main bug being reported here, well the problem is that the user change log works comparing the value of the string and thus reporting a change when in fact there is no change. A better approach would be to make it work per ID and not per string i.e. "Members Only" = 1 and "Registered Users Only" = 1