From 1fa1f620183d2268e906deadb1c5f87a0335d518 2007-09-14 11:42:23 From: Jean-Philippe Lang Date: 2007-09-14 11:42:23 Subject: [PATCH] Fixed: Spent Time on Reports page only visible to administrators. git-svn-id: http://redmine.rubyforge.org/svn/trunk@727 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/reports/issue_report.rhtml b/app/views/reports/issue_report.rhtml index 1d865ac..33f5e4a 100644 --- a/app/views/reports/issue_report.rhtml +++ b/app/views/reports/issue_report.rhtml @@ -1,4 +1,4 @@ -<% if @total_hours && authorize_for('timelog', 'reports') %> +<% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
<%= l(:label_spent_time) %>: <%= lwr(:label_f_hour, @total_hours) %>
<%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |