MyBB Community Forums

Full Version: What function makes "Poll:" to appear in forumdisplay.php?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was trying to find the function/variable that makes "poll:" to appear in front of threads which have a poll in them, but I couldn't find it.

Does anyone else know?
it is added as a prefix through forumdisplay.php file
$prefix = '';
		if($thread['poll'])
		{
			$prefix = $lang->poll_prefix;
		}