Commit 74537cadf70318a6218a15d50028bd56912c06c1

Authored by Larissa Reis
Committed by Antonio Terceiro
1 parent 514e9cbf

Fixes an error in the tasks view

  Fixes an error I found in the tasks view while I was investigating
  another bug.

Signed-off-by: Antonio Terceiro <terceiro@colivre.coop.br>
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/views/tasks/processed.rhtml
... ... @@ -7,7 +7,7 @@
7 7 <ul>
8 8 <% @tasks.each do |item| %>
9 9 <li>
10   - <strong><%= item.information %></strong> <br/>
  10 + <strong><%= task_information(item) %></strong> <br/>
11 11 <small>
12 12 <%= _('Created:') +' '+ show_date(item.created_at) %>
13 13 &nbsp; &#151; &nbsp;
... ...