Fix the poll's deletion date
This commit is contained in:
parent
755580463d
commit
4a9179ffea
@ -207,7 +207,7 @@ $smarty->assign('poll_id', $poll_id);
|
|||||||
$smarty->assign('poll', $poll);
|
$smarty->assign('poll', $poll);
|
||||||
$smarty->assign('title', __('Generic', 'Poll') . ' - ' . $poll->title);
|
$smarty->assign('title', __('Generic', 'Poll') . ' - ' . $poll->title);
|
||||||
$smarty->assign('expired', strtotime($poll->end_date) < time());
|
$smarty->assign('expired', strtotime($poll->end_date) < time());
|
||||||
$smarty->assign('deletion_date', $poll->end_date + PURGE_DELAY * 86400);
|
$smarty->assign('deletion_date', strtotime($poll->end_date) + PURGE_DELAY * 86400);
|
||||||
$smarty->assign('slots', $poll->format === 'D' ? $pollService->splitSlots($slots) : $slots);
|
$smarty->assign('slots', $poll->format === 'D' ? $pollService->splitSlots($slots) : $slots);
|
||||||
$smarty->assign('votes', $pollService->splitVotes($votes));
|
$smarty->assign('votes', $pollService->splitVotes($votes));
|
||||||
$smarty->assign('best_choices', $pollService->computeBestChoices($votes));
|
$smarty->assign('best_choices', $pollService->computeBestChoices($votes));
|
||||||
|
Loading…
Reference in New Issue
Block a user