I have some checkboxes like so in a form:
<%= check_box_tag "marked[#{relative_filepath}]", 1, false %>
Which produces:
<input type="checkbox" value="1" style="display: none;" name="marked[/blah]" id="marked__blah">
Now supposedly, I should there should be a hash in params[:marked], but this is nil.
What am I doing wrong?