diff --git a/app/controllers/admin/galleries_controller.rb b/app/controllers/admin/galleries_controller.rb index 5aeab81..aaa7369 100644 --- a/app/controllers/admin/galleries_controller.rb +++ b/app/controllers/admin/galleries_controller.rb @@ -281,7 +281,7 @@ class Admin::GalleriesController < OrbitAdminController @fiter_albums = albums1.concat(albums2) end def update_album_setting - params_album_setting = params['album_setting'].permit! + params_album_setting = params.require(:album_setting).permit! AlbumSetting.first.update_attributes(params_album_setting) redirect_to '/admin/galleries' end