]> source.dussan.org Git - redmine.git/commitdiff
remove hard-coded '.rhtml' from IssuesController 'show' (#6317).
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 16:31:07 +0000 (16:31 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 1 Sep 2011 16:31:07 +0000 (16:31 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7023 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/issues_controller.rb

index f154ef1c80839c8f6d83fd486750e229e9061d7e..b0d2dfac5fee09b3732393262f0e71db966cb95b 100644 (file)
@@ -123,7 +123,7 @@ class IssuesController < ApplicationController
     @priorities = IssuePriority.active
     @time_entry = TimeEntry.new(:issue => @issue, :project => @issue.project)
     respond_to do |format|
-      format.html { render :template => 'issues/show.rhtml' }
+      format.html { render :template => 'issues/show' }
       format.api
       format.atom { render :template => 'journals/index', :layout => false, :content_type => 'application/atom+xml' }
       format.pdf  { send_data(issue_to_pdf(@issue), :type => 'application/pdf', :filename => "#{@project.identifier}-#{@issue.id}.pdf") }