Warning Improvements by Xon

Unmaintained Warning Improvements by Xon 1.7.2

No permission to download
XF2 Version

Q. What about your other addons View Own Warnings or Alert On Warning
A. This addon fully replaces them, and will automatically uninstall them.

Q. Is Tapatalk supported?
A. It is unlikely that this addon will work as expected with Tapatalk, and there are no plans to support Tapatalk.

Q. How do I anonymise old warning alerts?
A. This will require custom SQL to be run against your database. This is a destructive change, and can result in data loss!

The following SQL will anonymous old warning alerts:
Code:
update xf_user_alert
set user_id = 0, username = ''
where content_type ='warning_alert' and action = 'warning'
Top Bottom