Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/lhotski/rails-xmlrpc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkv committed Nov 6, 2011
2 parents 76bf7c0 + 6de574b commit 1e06cff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/action_controller/acts/rails_xmlrpc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def add_method_handlers
self.class.instance_methods(false).each do |method|
unless ['xe_index', 'xe_method_prefix', 'xe_method_list'].member?(method)
puts "Adding XMLRPC method for #{method.to_s}"
@xmlrpc_server.add_handler(xe_method_prefix + method) do |*args|
@xmlrpc_server.add_handler(xe_method_prefix + method.to_s) do |*args|
self.send(method.to_sym, *args)
end
end
Expand Down

0 comments on commit 1e06cff

Please sign in to comment.