MyBB Community Forums

Full Version: View today's post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What do I need to do if I want to change "view today's post" become "the last three day's post". And Can I do this modify? Please help

Thanks
Open ./search.php file and find;
	if($mybb->input['days'] < 1)
	{
		$days = 1;
	}
and replace it with;
	if($mybb->input['days'] < 3)
	{
		$days = 3;
	}
Save the file.

Now open ./inc/languages/english/global.lang.php file and find;
$l['welcome_todaysposts'] = "View Today's Posts";
and replace it with;
$l['welcome_todaysposts'] = "View 3 Days Posts";

Should result into this;
[attachment=21256]
Thank you very much, it is okay now. I am very appreciated.
Don't forget to hit the solve button too Wink
(2011-01-12, 06:49 PM)Yaldaram Wrote: [ -> ]Don't forget to hit the solve button too Wink

Thanks for remind :d
Thanks.