# HG changeset patch # User Matthew Wild # Date 1774386527 0 # Node ID 88a8780c949f5cac50e61060eb78b6449959e992 # Parent ccbba57cacb5ee59e6c16eea1f79e1b296a2852c mod_report_affiliations: Also report trust score of anonymous users diff -r ccbba57cacb5 -r 88a8780c949f mod_report_affiliations/mod_report_affiliations.lua --- a/mod_report_affiliations/mod_report_affiliations.lua Tue Mar 24 20:54:04 2026 +0000 +++ b/mod_report_affiliations/mod_report_affiliations.lua Tue Mar 24 21:08:47 2026 +0000 @@ -83,7 +83,7 @@ local since, trust; - if account_type == "registered" then + if account_type == "registered" or account_type == "anonymous" then since = get_registered_timestamp(username); trust = get_trust_score(username); end