MyBB Community Forums

Full Version: Change Last Post Indicators for Protected Forums
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to change the "-" that shows up in place of last thread/post numbers on forums that link to specific places. I've gone through quite a few files, but I can't seem to figure out where to do this.

[Image: uPoFK.png]

Any ideas?
In ./inc/functions_forumlist.php, find;
			if($forum['linkto'] != '' || $hideinfo == true)
			{
				$lastpost = "<div style=\"text-align: center;\">-</div>";
				$posts = "-";
				$threads = "-";
			}

This is the code where - shows.
Thanks so much! Worked like a charm. Smile