From 4d1bc027e138df64841f8af3003cae39fb3b133a Mon Sep 17 00:00:00 2001 From: Afshin Mokhtari Date: Thu, 13 Mar 2014 20:28:02 +0000 Subject: Fix probs in sections 5.6 and 5.9; [ci skip] --- guides/source/getting_started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'guides') diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 3ef9e04a02..bb8753cb2e 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -751,8 +751,8 @@ Rails has several security features that help you write secure applications, and you're running into one of them now. This one is called `strong_parameters`, which requires us to tell Rails exactly which parameters we want to accept in our controllers. In this case, we want to allow the -`title` and `text` parameters, so change your `create` controller action to -look like this: +`title` and `text` parameters, so add the new `article_params` method, and +change your `create` controller action to use it, like this: ```ruby def create @@ -900,7 +900,7 @@ Also add a link in `app/views/articles/new.html.erb`, underneath the form, to go back to the `index` action: ```erb -<%= form_for :article do |f| %> +<%= form_for :article, url: articles_path do |f| %> ... <% end %> -- cgit v1.2.3