MyBB Community Forums

Full Version: View New Posts not working?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Yes, if you want to edit it to say something like 3 days, then you need to edit search.php file.
Oh really? Cool, thanks for the tip!
Open search.php and find;
elseif($mybb->input['action'] == "getdaily")
{
	if($mybb->input['days'] < 1)
	{
		$days = 1;
	}
	else
	{
		$days = intval($mybb->input['days']);
	}

and Change it to;
elseif($mybb->input['action'] == "getdaily")
{
	if($mybb->input['days'] < 3)
	{
		$days = 3;
	}
	else
	{
		$days = intval($mybb->input['days']);
	}

Replace 3 to whatever number of days you want to use to search threads from.
Oh okay thanks! I think I'll keep it at 3-4 days for now until my forum grows and then put it back to 1 Smile
Sure.
Pages: 1 2