aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2008-06-17 14:01:37 -0500
committerDavid Heinemeier Hansson <david@loudthinking.com>2008-06-17 17:37:29 -0500
commit8190bce8bc7249b7b9f3680195336eb3ca9508ee (patch)
treef159b343e4893f08da5f9a3d92e1c88783323a83 /actionpack/CHANGELOG
parent22af62cf486721ee2e45bb720c42ac2f4121faf4 (diff)
downloadrails-8190bce8bc7249b7b9f3680195336eb3ca9508ee.tar.gz
rails-8190bce8bc7249b7b9f3680195336eb3ca9508ee.tar.bz2
rails-8190bce8bc7249b7b9f3680195336eb3ca9508ee.zip
Added block-call style to link_to [Sam Stephenson/DHH]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index affefabe4b..3e977e1519 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,11 @@
*Edge*
+* Added block-call style to link_to [Sam Stephenson/DHH]. Example:
+
+ <% link_to(@profile) do %>
+ <strong><%= @profile.name %></strong> -- <span>Check it out!!</span>
+ <% end %>
+
* Performance: integration test benchmarking and profiling. [Jeremy Kemper]
* Make caching more aware of mime types. Ensure request format is not considered while expiring cache. [Jonathan del Strother]