diff --git a/app/views/my/blocks/_timelog.html.erb b/app/views/my/blocks/_timelog.html.erb index e3735357e..d1994eba5 100644 --- a/app/views/my/blocks/_timelog.html.erb +++ b/app/views/my/blocks/_timelog.html.erb @@ -1,5 +1,5 @@

<%=l(:label_spent_time)%> (<%= l(:label_last_n_days, 7) %>)

-<% +<% entries = TimeEntry.find(:all, :conditions => ["#{TimeEntry.table_name}.user_id = ? AND #{TimeEntry.table_name}.spent_on BETWEEN ? AND ?", @user.id, Date.today - 6, Date.today], :include => [:activity, :project, {:issue => [:tracker, :status]}],