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

Changeset 6553

Show
Ignore:
Timestamp:
04/23/07 20:58:40 (3 years ago)
Author:
david
Message:

Dont insert search parameters into the object

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activeresource/lib/active_resource/base.rb

    r6539 r6553  
    122122        def find_every(options) 
    123123          collection = connection.get(collection_path(options)) || [] 
    124           collection.collect! { |element| new(element, options) } 
     124          collection.collect! { |element| new(element) } 
    125125        end 
    126126