def show
# the redirect is needed for the backward compatibility with eclipse plugin
- redirect_to :action => 'search', :anchor => 'issues=' + params[:id]
+ redirect_to :controller => 'issues', :action => 'search', :anchor => 'issues=' + params[:id]
end
component_key = component.key
end
- anchor = "component=#{component_key}"
- anchor += "&tab=#{params[:tab]}" if params[:tab]
- redirect_to url_for(:controller => 'component', :action => 'index') + '#' + anchor
+ redirect_to url_for(:controller => 'component', :action => 'index', :id => component_key)
end
end