Skip to content

Commit 1acc446

Browse files
committed
Fix bulk actions
1 parent 35df918 commit 1acc446

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/js/init.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ $(document).ready(function(){
138138
$('.ch-toggle').each( function (){
139139
if($(this).prop('checked')){
140140
key=this.name;
141-
div=$('<input type="hidden" name="'+key+'[]" value="'+this.value+'"/>');
141+
div=$('<input type="hidden" name="'+key+'" value="'+this.value+'"/>');
142142
$('#objects').append(div);
143143
}
144144
});
145145

146146
$('#objects').submit();
147-
return true;
147+
return false;
148148
});
149149

150150
// Shortcuts

0 commit comments

Comments
 (0)