##// END OF EJS Templates
remove hard-coded '.rhtml' from IssuesController 'show' (#6317)....
Toshi MARUYAMA -
r6903:bf233552df8d
parent child
Show More
@@ -123,7 +123,7 class IssuesController < ApplicationController
123 @priorities = IssuePriority.active
123 @priorities = IssuePriority.active
124 @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
124 @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
125 respond_to do |format|
125 respond_to do |format|
126 format.html { render :template => 'issues/show.rhtml' }
126 format.html { render :template => 'issues/show' }
127 format.api
127 format.api
128 format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
128 format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
129 format.pdf { send_data(issue_to_pdf(@issue), :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf") }
129 format.pdf { send_data(issue_to_pdf(@issue), :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf") }
General Comments 0
You need to be logged in to leave comments. Login now