aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:33:47 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-22 12:33:47 +0000
commit4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5 (patch)
treeacdd26f036976ecb3ded5adaf4b99c76f52cc899 /actionpack/CHANGELOG
parente1ce18020e1c23c148060ec2180dc0ed794be06e (diff)
downloadrails-4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5.tar.gz
rails-4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5.tar.bz2
rails-4e60fe3ef3474834a9880f3cdd2a47f8efa99bc5.zip
Added documentation and fixed an ajax bug
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@974 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG6
1 files changed, 3 insertions, 3 deletions
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