aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-16 19:19:05 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-10-16 19:19:05 -0300
commit0b83433baf2a35f119212dcda052e26a5455e05b (patch)
tree49fdcfb4aa80be1c5ea84c68a757df14ee807e28 /guides/source
parentbc26557c6b68d1641e3dfb4ae62aee85ce23f192 (diff)
parentd7301936be353d3f05bf958cb3671308f9a84851 (diff)
downloadrails-0b83433baf2a35f119212dcda052e26a5455e05b.tar.gz
rails-0b83433baf2a35f119212dcda052e26a5455e05b.tar.bz2
rails-0b83433baf2a35f119212dcda052e26a5455e05b.zip
Merge pull request #15827 from yuki24/another-improvements-for-dynamic-error-pages
A warning line should look like a warning section in Guides
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/action_controller_overview.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/guides/source/action_controller_overview.md b/guides/source/action_controller_overview.md
index ca1e79d3ce..4200764b2d 100644
--- a/guides/source/action_controller_overview.md
+++ b/guides/source/action_controller_overview.md
@@ -1221,7 +1221,9 @@ Create the controller and views.
error.html.erb
```
-Do not forget to set the correct status code on the controller as shown before. You should avoid using the database or any complex operations because the user is already on the error page. Generating another error while on an error page could cause issues.
+Do not forget to set the correct status code on the controller as shown before.
+
+WARNING: You should avoid using the database or any complex operations because the user is already on the error page. Generating another error while on an error page could cause issues.
Force HTTPS protocol
--------------------