
07-07-2008, 12:30 AM
|
|
|
Join Date: Jul 2005
Location: Kent, OH
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by J98680B2423E
Find all
Code:
$vbulletin->db->query_write("UPDATE `" . TABLE_PREFIX . "poll` SET `options`='$choices', `votes`='$votes', `numberoptions`='$numberoptions' , `voters`='$voters', `lastvote`='$lastvote' WHERE `pollid` = '$poll_id'");
replace by
Code:
$active = 1;
$vbulletin->db->query_write("UPDATE `" . TABLE_PREFIX . "poll` SET `options`='$choices', `votes`='$votes', `active`='$active', `numberoptions`='$numberoptions' , `voters`='$voters', `lastvote`='$lastvote' WHERE `pollid` = '$poll_id'");
I could not find a proper way to prevent users to vote via the "Nomination Thread" once the poll is set to the active status.
Let me know if you succeed in it. 
|
This is just what I was looking for. Hopefully someone can figure this out fully but I'm going to use it with the voting for now.
|