diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-01-23 20:22:17 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-01-23 20:22:17 +0530 |
commit | 6641bf877a8408eb28d76077bb0a346a97465485 (patch) | |
tree | b9b97ad8f3991c821646653d7a8bfd29e702a9e4 /railties/guides/source | |
parent | 02319b7982fa7e55aecf79ede8bf0cb6961e0206 (diff) | |
download | rails-6641bf877a8408eb28d76077bb0a346a97465485.tar.gz rails-6641bf877a8408eb28d76077bb0a346a97465485.tar.bz2 rails-6641bf877a8408eb28d76077bb0a346a97465485.zip |
fix csrf_meta_tag
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 82700532c0..61f66d5de2 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -561,7 +561,7 @@ The view is only part of the story of how HTML is displayed in your web browser. <title>Blog</title> <%= stylesheet_link_tag :all %> <%= javascript_include_tag :defaults %> - <%= csrf_meta_tags %> + <%= csrf_meta_tag %> </head> <body style="background: #EEEEEE;"> |