Since doing this, it is no longer registering how many downloads
The Who Downloaded button shows how many times with no problems
But yours does not register any more!
Bashy
Quote:
Originally Posted by Ron1n
Find in release_attachment_complete:
Code:
if (strpos($vbulletin->options['releaseextensions'], strtolower($extension)) !== false)
{
$db->query_write("
UPDATE " . TABLE_PREFIX . "release SET
downloads = downloads + 1
WHERE postid = $attachmentinfo[postid]
");
}
Add above:
Code:
if ($_REQUEST['do'] != 'whodownloaded')
|