MyBB Community Forums

Full Version: Turn off "you have already posted this reply"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Quote:You have already posted this reply to the specified thread. Please visit the thread to see your reply.

We use Dice Roller MyCode and tend to use the same roll over and over in a single dice thread.. but the board keeps saying the above and I'd like to turn it off but can't find the setting in the AdminCP
you can comment code in newreply.php Line : 378

	if(!$mybb->get_input('savedraft'))
	{
		$query = $db->simple_select("posts p", "p.pid, p.visible", "{$user_check} AND p.tid='{$thread['tid']}' AND p.subject='".$db->escape_string($mybb->get_input('subject'))."' AND p.message='".$db->escape_string($mybb->get_input('message'))."' AND p.visible > -1 AND p.dateline>".(TIME_NOW-600));
		if($db->num_rows($query) > 0)
		{
			error($lang->error_post_already_submitted);
		}
	}