I have found a Bug in your Hack
I have a great many SQL-Errors
Code:
Invalid SQL:
SELECT
COUNT(*) as 8wrmediacomments
FROM ' . TABLE_PREFIX . 'media_comment
WHERE userID=5
AND media_comment.dateline > 315532800;
MySQL-Fehler : Unknown column 'media_comment.dateline' in 'where clause'
But it should read
Code:
SELECT
COUNT(*) as 8wrmediacomments
FROM ' . TABLE_PREFIX . 'media_comment
WHERE userID=5
AND ' . TABLE_PREFIX . 'media_comment.dateline > 315532800;
Unfortunately I can not find this query but
PLEASE HELP
Thanks