aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2013-03-04 03:22:53 -0800
committerSteve Klabnik <steve@steveklabnik.com>2013-03-04 03:22:53 -0800
commit8d69cd3e6815396dbab371de33a1615c73302ba9 (patch)
tree87da04da820d2ed5c65900e1b521f69ff4171b1b
parent1909808171d8bd9e8dcff0dfd652f05557ce6194 (diff)
parentf9be80f51c07e4fff3cde3d42ceb85c3a85d823e (diff)
downloadrails-8d69cd3e6815396dbab371de33a1615c73302ba9.tar.gz
rails-8d69cd3e6815396dbab371de33a1615c73302ba9.tar.bz2
rails-8d69cd3e6815396dbab371de33a1615c73302ba9.zip
Merge pull request #9537 from NARKOZ/patch-6
add prompt to 422 page to check logs
-rw-r--r--guides/code/getting_started/public/422.html5
-rw-r--r--railties/lib/rails/generators/rails/app/templates/public/422.html5
2 files changed, 6 insertions, 4 deletions
diff --git a/guides/code/getting_started/public/422.html b/guides/code/getting_started/public/422.html
index b75cc2fd6c..0b64eb4ae9 100644
--- a/guides/code/getting_started/public/422.html
+++ b/guides/code/getting_started/public/422.html
@@ -3,7 +3,7 @@
<head>
<title>The change you wanted was rejected (422)</title>
<style>
- body
+ body
{
background-color: #efefef;
color: #2E2F30;
@@ -31,7 +31,7 @@
}
body>p
{
- width: 33em;
+ width: 33em;
margin: 0 auto 1em;
padding: 1em 0;
background-color: #f7f7f7;
@@ -53,5 +53,6 @@
<h1>The change you wanted was rejected.</h1>
<p>Maybe you tried to change something you didn't have access to.</p>
</div>
+ <p>If you are the application owner check the logs for more information.</p>
</body>
</html>
diff --git a/railties/lib/rails/generators/rails/app/templates/public/422.html b/railties/lib/rails/generators/rails/app/templates/public/422.html
index ed58409a27..f1f32b83ae 100644
--- a/railties/lib/rails/generators/rails/app/templates/public/422.html
+++ b/railties/lib/rails/generators/rails/app/templates/public/422.html
@@ -3,7 +3,7 @@
<head>
<title>The change you wanted was rejected (422)</title>
<style>
- body
+ body
{
background-color: #efefef;
color: #2E2F30;
@@ -31,7 +31,7 @@
}
body>p
{
- width: 33em;
+ width: 33em;
margin: 0 auto 1em;
padding: 1em 0;
background-color: #f7f7f7;
@@ -53,5 +53,6 @@
<h1>The change you wanted was rejected.</h1>
<p>Maybe you tried to change something you didn't have access to.</p>
</div>
+ <p>If you are the application owner check the logs for more information.</p>
</body>
</html>