for those of you having problems with the Anonymous Log not containing information when people use the Quick Reply box, here is a solution. Chances are that you are using the AJAX quick reply and there simply isn't a hook setup for it in this mod. Luckily the fix is very easy.
1. Go to your admincp
2. Navigate to Plugins & Products, and then into Add New Plugin
3. Enter the following:
Product: Zoints Anonymous Posting
Hook Location: newreply_post_ajax
Title: Unload Anonymous (AJAX)
Execution Order: 5
Plugin PHP Code:
Code:
if ($vbulletin->GPC['anonymous'])
{
$vbulletin->userinfo = $olduser;
$vbulletin->db->query_write("
INSERT INTO " . TABLE_PREFIX . "anonymous_log
(userid, dateline, postid, threadid, forumid)
VALUES (
" . intval($vbulletin->userinfo['userid']) . ",
" . TIMENOW . ",
" . intval($newpost['postid']) . ",
" . intval($threadinfo['threadid']) . ",
" . intval($foruminfo['forumid']) . "
)");
}
Plugin is active: Yes
4. Save.
Now go and make a post using the quick reply, and you should see it being properly logged into the Anonymous Log! Hope it helps someone out there