From 4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 22 Mar 2005 12:33:47 +0000 Subject: Added documentation and fixed an ajax bug git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@974 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'actionpack/CHANGELOG') diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 9c90b2830d..6978ddafb9 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,4 +1,4 @@ -*SVN* +*1.6.0* (22th March, 2005) * Added a JavascriptHelper and accompanying prototype.js library that opens the world of Ajax to Action Pack with a large array of options for dynamically interacting with an application without reloading the page #884 [Sam Stephenson/David] @@ -13,11 +13,11 @@ ... if @something.save # will redirect, use flash - flash['message'] = 'Save successful' + flash[:message] = 'Save successful' redirect_to :action => 'list' else # no redirect, message is for current action, use flash.now - flash.now['message'] = 'Save failed, review' + flash.now[:message] = 'Save failed, review' render_action 'edit' end end -- cgit v1.2.3