aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:49:56 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-11 07:49:56 +0000
commitfae7311b9c01aa07e7c0851bb602698e4f05273b (patch)
tree9b616651a7af9f26bf0439e396266b2af3a8847e /actionpack/CHANGELOG
parent4259199c2cfd3ab4d77acadc8ba158096a243ac0 (diff)
downloadrails-fae7311b9c01aa07e7c0851bb602698e4f05273b.tar.gz
rails-fae7311b9c01aa07e7c0851bb602698e4f05273b.tar.bz2
rails-fae7311b9c01aa07e7c0851bb602698e4f05273b.zip
Fixed that auto_complete_for didn't force the input string to lower case even as the db comparison was
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1815 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 15d84dab54..da22956572 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*1.9.1* (11 July, 2005)
+* Fixed that auto_complete_for didn't force the input string to lower case even as the db comparison was
+
* Fixed that Action View should always use the included Builder, never attempt to require the gem, to ensure compatibility
* Added that nil options are not included in tags, so tag("p", :ignore => nil) now returns <p /> not <p ignore="" /> but that tag("p", :ignore => "") still includes it #1465 [michael@schuerig.de]