Donor List: total donation of $1,000 show as $1
Closed this issue · 5 comments
DrunkMunki commented
Skouat commented
Hi,
Which version of PPDE do you use?
Please can you run the following SQL query?
SELECT SUM(txn.mc_gross) AS amount, u.username
FROM (phpbb_ppde_txn_log txn)
LEFT JOIN phpbb_users u ON (u.user_id = txn.user_id)
WHERE u.user_id = <you_user_id>
AND txn.payment_status = 'Completed'
AND txn.test_ipn = 0
GROUP BY txn.user_id
ORDER BY txn.payment_date DESC;
Replace the "table_prefix" phpbb_
with yours
Replace <you_user_id>
with the ID of the user affected by this issue.
DrunkMunki commented
Skouat commented
Please, can you apply the quick fix mentionned above?
DrunkMunki commented
thanks, confirmed the fix worked :)