MyBB Community Forums

Full Version: reputation error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

MikeInToshx

Hi guys,

When trying to add reputation to a member, I get an error :

"You must provide a valid reason with at least ten characters."

Problem is Thanks is just 6 letters.. How do I fix this?
In reputation.php find:
if($mybb->input['pid'] == 0)
	{
		$mybb->input['comments'] = trim($mybb->input['comments']); // Trim whitespace to check for length
		if(my_strlen($mybb->input['comments']) < 10)
		{
			$show_back = 1;
			$message = $lang->add_no_comment;
			eval("\$error = \"".$templates->get("reputation_add_error")."\";");
			output_page($error);
			exit;
		}
	}

Remove the whole conditional or change 10 to 1/whatever.

MikeInToshx

Thanks!