aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-07-20 12:47:55 +0000
committerJamis Buck <jamis@37signals.com>2005-07-20 12:47:55 +0000
commitd886ad5c8b6f9eaa8b82e634c989aee48ccaf240 (patch)
tree5dddadb2d4c751e46f60517b658407e243364500 /activerecord/CHANGELOG
parent7077d8bb3d71742d5130753816508ccf302d7b26 (diff)
downloadrails-d886ad5c8b6f9eaa8b82e634c989aee48ccaf240.tar.gz
rails-d886ad5c8b6f9eaa8b82e634c989aee48ccaf240.tar.bz2
rails-d886ad5c8b6f9eaa8b82e634c989aee48ccaf240.zip
Fix acts_as_list such that moving next-to-last item to the bottom does not result in duplicate positions
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1872 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/CHANGELOG')
-rw-r--r--activerecord/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 1eaa5517d0..018972d954 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Fix acts_as_list so that moving next-to-last item to the bottom does not result in duplicate item positions
+
* Fixed incompatibility in DB2 adapter with the new limit/offset approach #1718 [Maik Schmidt]
* Added :select option to find which can specify a different value than the default *, like find(:all, :select => "first_name, last_name"), if you either only want to select part of the columns or exclude columns otherwise included from a join #1338 [Stefan Kaes]