Warning Improvements by Xon

xF2 Add-on Warning Improvements by Xon 2.9.5

No permission to download
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'
Q. Can the automatic warning summary to forum/thread notices be modified.
A. Yes, Edit the phrases Warning_Summary_Title and Warning_Summary_Message
Top