We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ActionView::Template::Error (unable to convert unpermitted parameters to hash): 9: - if count == @per_page.to_i 10: %em.current= count 11: - else 12: = link_to count, send("redraw_#{controller.controller_name}_path", per_page: count, query: params[:query], q: params[:q]), remote: true
app/views/shared/_paginate_with_per_page.html.haml:12:in `block in _app_views_shared__paginate_with_per_page_html_haml___2598546186346708051_70070363839580' app/views/shared/_paginate_with_per_page.html.haml:8:in `each' app/views/shared/_paginate_with_per_page.html.haml:8:in `_app_views_shared__paginate_with_per_page_html_haml___2598546186346708051_70070363839580' app/views/contacts/index.html.haml:17:in `_app_views_contacts_index_html_haml___2337017868419751336_88777960' app/controllers/entities/contacts_controller.rb:16:in `index'
The text was updated successfully, but these errors were encountered:
Which version(s)? of FFCRM?
Are you able to provide the post input?
Sorry, something went wrong.
Here it's the solution to this, https://stackoverflow.com/questions/43551676/unable-to-convert-unpermitted-parameters-to-hash-ruby-on-rails-app-error
I wonder if params[:query] and params[:q] have been permitted?
params[:query]
params[:q]
https://310nae.com/fatfree-search-bug/
params[:q] appears not to be permitted in one test case I saw recently.
Fix #794 by permitting a specific param
063f4f6
Successfully merging a pull request may close this issue.
The text was updated successfully, but these errors were encountered: