aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-11-23 21:59:20 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-11-23 21:59:20 +0000
commitd933627044ff4aeaf81087902e0e8e3cff1dd356 (patch)
tree69ebc78e0df31ad19f13479a3c9887c79c4fe8b0 /actionpack/CHANGELOG
parent26f2fbf35f1e761c59323174dddce3c2314c8a3d (diff)
downloadrails-d933627044ff4aeaf81087902e0e8e3cff1dd356.tar.gz
rails-d933627044ff4aeaf81087902e0e8e3cff1dd356.tar.bz2
rails-d933627044ff4aeaf81087902e0e8e3cff1dd356.zip
Introduce :selected option to the select helper. Allows you to specify a selection other than the current value of object.method. Specify :selected => nil to leave all options unselected. Closes #2991.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3174 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 a37e024a57..d485d87971 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Introduce :selected option to the select helper. Allows you to specify a selection other than the current value of object.method. Specify :selected => nil to leave all options unselected. #2991 [Jonathan Viney <jonathan@bluewire.net.nz>]
+
* Initialize @optional in routing code to avoid warnings about uninitialized access to an instance variable. [Nicholas Seckar]
* Make ActionController's render honor the :locals option when rendering a :file. #1665. [Emanuel Borsboom, Marcel Molina Jr.]