Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4888

Show
Ignore:
Timestamp:
08/31/06 23:38:03 (2 years ago)
Author:
david
Message:

Fixed a few find_alls

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/scaffolding.rb

    r4310 r4888  
    2525    # 
    2626    #    def list 
    27     #      @entries = Entry.find_all 
     27    #      @entries = Entry.find(:all) 
    2828    #      render_scaffold "list" 
    2929    #    end 
  • trunk/actionpack/README

    r4307 r4888  
    367367   
    368368    def index 
    369       @posts = Post.find_all 
     369      @posts = Post.find(:all) 
    370370    end 
    371371     
  • trunk/railties/README

    r4672 r4888  
    9191  class WeblogController < ActionController::Base 
    9292    def index 
    93       @posts = Post.find_all 
     93      @posts = Post.find(:all) 
    9494      breakpoint "Breaking out from the list" 
    9595    end