Commit a9bb3dddb4186ed5ff48fd4b31dc518d9ecf3d16

Authored by Francisco Júnior
1 parent 71d7e8fa

community_track: fix content_type return if context is not cms controller

plugins/community_track/lib/community_track_plugin.rb
... ... @@ -13,6 +13,7 @@ class CommunityTrackPlugin < Noosfero::Plugin
13 13 end
14 14  
15 15 def content_types
  16 + return [] if !context.kind_of?(CmsController)
16 17 if context.respond_to?(:params) && context.params
17 18 types = []
18 19 parent_id = context.params[:parent_id]
... ...