From e682fee121ed4c48b94e0afea887370c16e15d05 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Fri, 22 Jun 2007 18:15:40 +0000 Subject: Fix reload error when path prefix is used. Closes #8727. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7082 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activeresource/lib/active_resource/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activeresource/lib/active_resource') diff --git a/activeresource/lib/active_resource/base.rb b/activeresource/lib/active_resource/base.rb index 78d1c0033a..b4a9888ee5 100644 --- a/activeresource/lib/active_resource/base.rb +++ b/activeresource/lib/active_resource/base.rb @@ -294,7 +294,7 @@ module ActiveResource # Reloads the attributes of this object from the remote web service. def reload - self.load(self.class.find(id, @prefix_options).attributes) + self.load(self.class.find(id, :params => @prefix_options).attributes) end # Manually load attributes from a hash. Recursively loads collections of -- cgit v1.2.3