MyBB Community Forums

Full Version: how do you remove the "|" thinggy between "show results" & "edit poll"??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey ^^

how do you remove the "|" thinggy between "show results" & "edit poll" if you post a poll on a thread?? cuz i can't seem to find it in the templates, & it has no references to the languages if i inspect it with firebug.

thank you very much for the heeeelp!!
Its inside the core file ./showthread.php (around line # 529-537);
		// Check if user is allowed to edit posts; if so, show "edit poll" link.
		if(!is_moderator($fid, 'caneditposts'))
		{
			$edit_poll = '';
		}
		else
		{
			$edit_poll = " | <a href=\"polls.php?action=editpoll&amp;pid={$poll['pid']}\">{$lang->edit_poll}</a>";
		}
thanks @Yaldaram, rad for the reply ^_^ i'll check it out & post my results before i mark this as solved.