Skip to content

Commit

Permalink
[webui] title is not a valid parameter to the live_build_log action
Browse files Browse the repository at this point in the history
  • Loading branch information
coolo committed Jul 8, 2013
1 parent 06ad7fd commit 9aec698
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/webui/app/views/project/status.html.erb
Expand Up @@ -112,7 +112,7 @@
sortkey = "8-outdated-" + p['name']
end
if p['firstfail']
outs.unshift(link_to("Fails", :title => p['name'], :controller => :package,
outs.unshift(link_to("Fails", :controller => :package,
:action => :live_build_log, :arch => p['failedarch'], :repository => p['failedrepo'], :project => @project.name, :package => p['name']) +
" for #{Integer(Time.now.to_i - p['firstfail']) / 3600 / 24} days:" +
(" <span id='".html_safe + valid_xml_id('comment_' + p['name']) + "'>".html_safe +
Expand All @@ -131,11 +131,11 @@
<td class="nowrap">
<span class="hidden"><%= p['name'] %></span>
<% if icon == "error" -%>
<%= image_tag("exclamation.png", :size => "16x16", :title => "Error" ) %>
<%= sprite_tag("exclamation", title: "Error" ) %>
<% elsif icon == "ok" -%>
<%= image_tag("accept.png", :size => "16x16", :title => "Ok" ) %>
<%= sprite_tag("accept", title: "Ok" ) %>
<% else -%>
<%= image_tag("information.png", :size => "16x16", :title => "So-so" ) %>
<%= sprite_tag("information", title: "So-so" ) %>
<% end -%>
<%= link_to p['name'], :controller => :package, :action => :show, :project => @project.name, :package => p['name'] %>
</td>
Expand Down

0 comments on commit 9aec698

Please sign in to comment.