Don't split admin_poll_id as poll_id
This commit is contained in:
parent
15640a6788
commit
8f2c9f07d4
@ -90,12 +90,13 @@ function sendUpdateNotification($poll, $mailService, $type) {
|
||||
if (!empty($_GET['poll'])) {
|
||||
$admin_poll_id = filter_input(INPUT_GET, 'poll', FILTER_VALIDATE_REGEXP, ['options' => ['regexp' => POLL_REGEX]]);
|
||||
if (strlen($admin_poll_id) === 24) {
|
||||
$poll_id = substr($admin_poll_id, 0, 16);
|
||||
$poll = $pollService->findByAdminId($admin_poll_id);
|
||||
}
|
||||
}
|
||||
|
||||
if (!$poll) {
|
||||
if ($poll) {
|
||||
$poll_id = $poll->id;
|
||||
} else {
|
||||
$smarty->assign('error', __('Error', 'This poll doesn\'t exist !'));
|
||||
$smarty->display('error.tpl');
|
||||
exit;
|
||||
|
Loading…
Reference in New Issue
Block a user