aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-26 22:00:23 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-26 22:00:23 +0000
commit520dae295bbd2e406739048b5d43e5e4cd1342d5 (patch)
tree682211831b46727358bc1685837ab4aa0cc3059b /actionpack/CHANGELOG
parent9fb6a54a164e7a1b64cf36efcba657c4215858b8 (diff)
downloadrails-520dae295bbd2e406739048b5d43e5e4cd1342d5.tar.gz
rails-520dae295bbd2e406739048b5d43e5e4cd1342d5.tar.bz2
rails-520dae295bbd2e406739048b5d43e5e4cd1342d5.zip
Added include_seconds option as the third parameter to distance_of_time_in_words which will render "less than a minute" in higher resolution ("less than 10 seconds" etc) #944 [thomas@fesch.at]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1010 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 509c764f27..a20ff3f7c9 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added include_seconds option as the third parameter to distance_of_time_in_words which will render "less than a minute" in higher resolution ("less than 10 seconds" etc) #944 [thomas@fesch.at]
+
* Added fourth option to process in test cases to specify the content of the flash #949 [Jamis Buck]
* Added Verifications that allows you to specify preconditions to actions in form of statements like <tt>verify :only => :update_post, :params => "admin_privileges", :redirect_to => { :action => "settings" }</tt>, which ensure that the update_post action is only called if admin_privileges is available as a parameter -- otherwise the user is redirected to settings. #897 [Jamis Buck]