MyBB Community Forums

Full Version: Thread Closed poll open?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Am i right in saying that if a thread is closed the poll gets closed too?

Is there a way to keep the poll open?
Open ./showthread.php and find;
		if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout'] > 0))
and Change it into;
		if($poll['closed'] == 1 || ($expiretime < $now && $poll['timeout'] > 0))

Now open ./polls.php and find;
	if($poll['closed'] == 1 || $thread['closed'] == 1 || ($expiretime < $now && $poll['timeout']))
and Change it into;
	if($poll['closed'] == 1  || ($expiretime < $now && $poll['timeout']))

Now you can vote in closed threads aswell Toungue
Thats excellent, thanks Yaldaram!
Was a pleasure Wink