Allowing to remove empty slot.

This commit is contained in:
Antonin 2016-05-09 14:49:09 +02:00
parent b359139bae
commit d05a1e5182
2 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ if (isset($_POST['confirm_delete_poll'])) {
// Delete a slot
// -------------------------------
if (!empty($_GET['delete_column'])) {
if (isset($_GET['delete_column'])) {
$column = filter_input(INPUT_GET, 'delete_column', FILTER_DEFAULT);
$column = Utils::base64url_decode($column);

0
tpl/part/messages.tpl Normal file
View File