Skip to content

Commit

Permalink
fixes this error: can't convert Fixnum into String
Browse files Browse the repository at this point in the history
  • Loading branch information
gugod committed Apr 24, 2010
1 parent 0a2d6e6 commit 45b34ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/iphone/timelog/details.html.erb
Expand Up @@ -8,7 +8,7 @@
<% @entries.each do |entry| %>
<li>
<% if entry.issue %>
<p><%= link_to "#" + entry.issue.id, :controller => "issues", :action => "show", :id => entry.issue.id %></p>
<p><%= link_to "##{entry.issue.id}", :controller => "issues", :action => "show", :id => entry.issue.id %></p>
<% end %>
<p><%=h entry.activity %>, <%= html_hours("%.1f" % entry.hours) %> Hours</p>
<span class="user"><%=h entry.user %></span>
Expand Down

0 comments on commit 45b34ff

Please sign in to comment.