aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/README
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-08-31 23:38:03 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-08-31 23:38:03 +0000
commite278b72bf3238353906a6cb928410aaf712556f4 (patch)
tree85dbb9c80616f58d374f79194cf2fd414e681697 /actionpack/README
parentf9b369487046020bcdb92a3985270c9fb9943382 (diff)
downloadrails-e278b72bf3238353906a6cb928410aaf712556f4.tar.gz
rails-e278b72bf3238353906a6cb928410aaf712556f4.tar.bz2
rails-e278b72bf3238353906a6cb928410aaf712556f4.zip
Fixed a few find_alls
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4888 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/README')
-rwxr-xr-xactionpack/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/README b/actionpack/README
index 88bcab8461..f37507f35f 100755
--- a/actionpack/README
+++ b/actionpack/README
@@ -366,7 +366,7 @@ methods:
layout "weblog/layout"
def index
- @posts = Post.find_all
+ @posts = Post.find(:all)
end
def display