aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:00:18 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:00:18 +0000
commit5b3bc3139a1b15054f26092eb95a5fbc8fdc07aa (patch)
tree9e098012ea0a05c0b4a2fdb8518c06543e8d71ae /actionpack/CHANGELOG
parenta3659d583586d45c5f48fdd103ff8c797cecfafe (diff)
downloadrails-5b3bc3139a1b15054f26092eb95a5fbc8fdc07aa.tar.gz
rails-5b3bc3139a1b15054f26092eb95a5fbc8fdc07aa.tar.bz2
rails-5b3bc3139a1b15054f26092eb95a5fbc8fdc07aa.zip
Added a third parameter to TextHelper#auto_link called href_options for specifying additional tag options on the links generated #1401 [tyler.kovacs@gmail.com]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1432 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 b161b1d552..e49ae64a99 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added a third parameter to TextHelper#auto_link called href_options for specifying additional tag options on the links generated #1401 [tyler.kovacs@gmail.com]. Example: auto_link(text, :all, { :target => "_blank" }) to have all the generated links open in a new window.
+
* Fixed TextHelper#highlight to return the text, not nil, if the phrase is blank #1409 [patrick@lenz.sh]
* Fixed TagHelper such that :name and 'name' keys in the options doesn't result in two attributes #1455 [take_tk]