mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
7630c3567c
Exclude certain forums from double post protection
23 lines
620 B
PHP
23 lines
620 B
PHP
<?
|
|
authorize();
|
|
$ThreadID = $_GET['threadid'];
|
|
$NewVote = $_GET['vote'];
|
|
|
|
if(is_number($ThreadID) && is_number($NewVote)) {
|
|
|
|
if(!check_perms("site_moderate_forums")) {
|
|
$DB->query("SELECT ForumID FROM forums_topics WHERE ID = $ThreadID");
|
|
list($ForumID) = $DB->next_record();
|
|
if(!in_array($ForumID, $ForumsRevealVoters)) {
|
|
error(403);
|
|
}
|
|
}
|
|
|
|
$DB->query("UPDATE forums_polls_votes SET Vote = ".$NewVote." WHERE TopicID = ".$ThreadID." AND UserID = ".$LoggedUser['ID']);
|
|
$Cache->delete_value('polls_'.$ThreadID);
|
|
header("Location: forums.php?action=viewthread&threadid=".$ThreadID);
|
|
|
|
} else {
|
|
error(404);
|
|
}
|