Commit dd173d49ff58161293e5fd623b3169e0f698ce48

Authored by Francisco Júnior
1 parent 6f872902

fix missing param

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
lib/noosfero/plugin.rb
... ... @@ -699,7 +699,7 @@ class Noosfero::Plugin
699 699 elsif method.to_s =~ /^content_expire_(#{content_actions.join('|')})$/
700 700 nil
701 701 elsif context.respond_to?(method)
702   - context.send(method)
  702 + context.send(method, *args)
703 703 else
704 704 super
705 705 end
... ...