diff options
author | Godfrey Chan <godfreykfc@gmail.com> | 2014-03-13 14:24:20 -0700 |
---|---|---|
committer | Godfrey Chan <godfreykfc@gmail.com> | 2014-03-13 14:24:20 -0700 |
commit | 3560d7aad7c9bffc903ec1378c1c1d7c738f5b86 (patch) | |
tree | e9c56d4585226ca3d69129e65addc829adc88df4 | |
parent | a0936a1635a86c5cc6b3afa331503aac1e87ced7 (diff) | |
parent | 4d1bc027e138df64841f8af3003cae39fb3b133a (diff) | |
download | rails-3560d7aad7c9bffc903ec1378c1c1d7c738f5b86.tar.gz rails-3560d7aad7c9bffc903ec1378c1c1d7c738f5b86.tar.bz2 rails-3560d7aad7c9bffc903ec1378c1c1d7c738f5b86.zip |
Merge pull request #14378 from afshinator/master
Fix probs in sections 5.6 and 5.9; [ci skip]
-rw-r--r-- | guides/source/getting_started.md | 6 |
1 files changed, 3 insertions, 3 deletions
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 %> |