diff options
author | Jared Tame <jmtame@gmail.com> | 2011-08-23 02:26:55 -0700 |
---|---|---|
committer | Teng Siong Ong <siong1987@gmail.com> | 2011-08-27 14:29:30 -0500 |
commit | 1606b6c7e4af5ebc0bc705f3c4e4ea63b038ef14 (patch) | |
tree | dea0525721c845e92796a4e18a39923c257cc7fa /railties | |
parent | 827a0fee07eff7ca35ecdf5ca650f2094ad4825a (diff) | |
download | rails-1606b6c7e4af5ebc0bc705f3c4e4ea63b038ef14.tar.gz rails-1606b6c7e4af5ebc0bc705f3c4e4ea63b038ef14.tar.bz2 rails-1606b6c7e4af5ebc0bc705f3c4e4ea63b038ef14.zip |
fixed 500 error message which is misleading by suggesting all rails apps have exception notifications by default
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/public/500.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/public/500.html b/railties/lib/rails/generators/rails/app/templates/public/500.html index b80307fc16..b8e4d7c721 100644 --- a/railties/lib/rails/generators/rails/app/templates/public/500.html +++ b/railties/lib/rails/generators/rails/app/templates/public/500.html @@ -20,7 +20,7 @@ <!-- This file lives in public/500.html --> <div class="dialog"> <h1>We're sorry, but something went wrong.</h1> - <p>We've been notified about this issue and we'll take a look at it shortly.</p> + <p>If you believe you've seen this page in error, please notify the site owner.</p> </div> </body> </html> |