Showing 1 changed files with 1 additions and 1 deletions
+1 -1
action/action
... ...
@@ -54,7 +54,7 @@ $tables{polls} = $cfg::config{prefix} . "poll";
54 54
 $tables{votes} = $cfg::config{prefix} . "vote";
55 55
 $tables{slots} = $cfg::config{prefix} . "slot";
56 56
 
57
-$request = "select id as poll_id, admin_name as category, admin_id, title, recurrent, restricted, description from $tables{polls}";
57
+$request = "select id as poll_id, admin_name as category, admin_id, title, recurrent, description from $tables{polls}";
58 58
 $sth = $dbh->prepare($request);
59 59
 $polls = $dbh->selectall_hashref($sth, [ qw(category poll_id) ]);
60 60