MyBB Community Forums

Full Version: Download Attachments when Post Count is Greater than 0
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
As per title.

Looks for for a plugin that only allows users to download attachments when their post count is greater than 0.

Thanks

Sorted.
If you use Patches:

Filename:
attachment.php

Search:
$plugins->run_hooks("attachment_start");

Insert after:
if($mybb->user['postnum'] < 1)
{
	error_no_permission();
}

Fill the title and description -> Save Patch -> Activate -> Apply