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
This commit is contained in:
Jean-Philippe Lang 2007-09-14 11:42:23 +00:00
parent 8929bfca63
commit 1fa1f62018
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<% if @total_hours && authorize_for('timelog', 'reports') %>
<% if @total_hours && User.current.allowed_to?(:view_time_entries, @project) %>
<div style="float:right;text-align:right;">
<strong><%= l(:label_spent_time) %></strong>: <span class="icon icon-time"><%= lwr(:label_f_hour, @total_hours) %></span><br />
<%= link_to(l(:label_details), {:controller => 'timelog', :action => 'details', :project_id => @project}) %> |