Skip to content
Snippets Groups Projects
Commit afe8eac8 authored by Olivier PEREZ's avatar Olivier PEREZ
Browse files

Fixes issue #109 - Urlencode title of column to delete for classical polls too

parent 8f2c9f07
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
<th role="presentation"></th>
{foreach $slots as $id=>$slot}
<td headers="C{$id}">
<a href="{poll_url id=$admin_poll_id admin=true action='delete_column' action_value=$slot->title}"
<a href="{poll_url id=$admin_poll_id admin=true action='delete_column' action_value=urlencode($slot->title)}"
class="btn btn-link btn-sm" title="{__('adminstuds', 'Remove the column')} {$slot->title|html}">
<i class="glyphicon glyphicon-remove text-danger"></i><span class="sr-only">{__('Generic', 'Remove')}</span>
</a>
......
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