Skip to content
Snippets Groups Projects
Commit 5406c8d9 authored by Neil Drumm's avatar Neil Drumm 👋
Browse files

#83998 by erdemkose. Remove ability to cancel votes more than once.

parent 931f43f2
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -442,7 +442,7 @@ function theme_poll_results($title, $results, $votes, $links, $block, $nid, $vot
$output .= $results;
$output .= '<div class="total">'. t('Total votes: %votes', array('%votes' => $votes)) .'</div>';
if (isset($vote) && $vote > -1 && user_access('cancel own vote')) {
$output .= drupal_get_form('poll_cancel_form', $nid, $vote);
$output .= drupal_get_form('poll_cancel_form', $nid);
}
$output .= '</div>';
}
......@@ -450,9 +450,8 @@ function theme_poll_results($title, $results, $votes, $links, $block, $nid, $vot
return $output;
}
function poll_cancel_form($nid, $vote) {
function poll_cancel_form($nid) {
$form['#action'] = url("poll/cancel/$nid");
$form['choice'] = array('#type' => 'hidden', '#value' => $vote);
$form['submit'] = array('#type' => 'submit', '#value' => t('Cancel your vote'));
return $form;
}
......@@ -565,11 +564,7 @@ function poll_cancel(&$node) {
$nid = arg(2);
if ($node = node_load(array('nid' => $nid))) {
$edit = $_POST;
$choice = $edit['choice'];
$cancel = $_POST['cancel'];
if (isset($choice) && isset($node->choice[$choice])) {
if ($node->type == 'poll' && $node->allowvotes == FALSE) {
if ($user->uid) {
db_query('DELETE FROM {poll_votes} WHERE nid = %d and uid = %d', $node->nid, $user->uid);
}
......@@ -578,9 +573,9 @@ function poll_cancel(&$node) {
}
// Subtract from the votes.
db_query("UPDATE {poll_choices} SET chvotes = chvotes - 1 WHERE nid = %d AND chorder = %d", $node->nid, $choice);
db_query("UPDATE {poll_choices} SET chvotes = chvotes - 1 WHERE nid = %d AND chorder = %d", $node->nid, $node->vote);
$node->allowvotes = TRUE;
$node->choice[$choice]['chvotes']--;
$node->choice[$node->vote]['chvotes']--;
drupal_set_message(t('Your vote was canceled.'));
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment