diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 22:46:45 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2005-01-10 22:46:45 +0000 |
commit | ebf424061dba2454b3e1d746e2515b10e76a5be8 (patch) | |
tree | 6a6ae10a618a0cbe7d34e72564bc11760333628b /actionpack/CHANGELOG | |
parent | 7ed4b745fcd2c57747ed21ffa3a7a0cd92f621af (diff) | |
download | rails-ebf424061dba2454b3e1d746e2515b10e76a5be8.tar.gz rails-ebf424061dba2454b3e1d746e2515b10e76a5be8.tar.bz2 rails-ebf424061dba2454b3e1d746e2515b10e76a5be8.zip |
Fixed three issues with retrying breakpoints #417 [Florian Gross]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@370 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index d43ada01f0..e04113746c 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,12 @@ *SVN* +* Fixed three issues with retrying breakpoints #417 [Florian Gross] + + 1. Don't screw up pages that use multiple values for the same parameter (?foo=bar&foo=qux was converted to ?foo=barqux) + 2. Don't screw up all forms when you click the "Retry with Breakpoint" link multiple times instead of reloading + (This caused the parameters to be added multiple times for GET forms leading to trouble.) + 3. Don't add ?BP-RETRY=1 multiple times + * Added that all renders and redirects now return false, so they can be used as the last line in before_filters to stop execution. Before: |