Display confirmation page before to delete all votes of one poll.

This commit is contained in:
Olivier PEREZ 2014-12-21 00:04:23 +01:00
parent 8d46ec6c33
commit 45716d15c1
2 changed files with 18 additions and 0 deletions

View file

@ -128,6 +128,13 @@ if (!empty($_POST['delete_comment'])) {
// Remove all votes
// -------------------------------
if (isset($_POST['remove_all_votes'])) {
$smarty->assign('poll_id', $poll_id);
$smarty->assign('admin_poll_id', $admin_poll_id);
$smarty->assign('title', _('Poll') . ' - ' . $poll->title);
$smarty->display('confirm/delete_votes.tpl');
exit;
}
if (isset($_POST['confirm_remove_all_votes'])) {
$adminPollService->cleanVotes($poll_id);
}