From 4db0c427d396f326c32bd5598797a1c8f3390887 Mon Sep 17 00:00:00 2001 From: jomo Date: Sun, 28 Sep 2014 15:43:55 +0200 Subject: [PATCH] added title attribute to thread titles --- app/views/forums/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/forums/show.html.erb b/app/views/forums/show.html.erb index c4b52f4..f6a64cc 100644 --- a/app/views/forums/show.html.erb +++ b/app/views/forums/show.html.erb @@ -19,7 +19,7 @@
"> - <%= link_to truncate(thread.title, length: 60, omission: " …"), forumthread_path(thread) %> + <%= link_to truncate(thread.title, length: 60, omission: " …"), forumthread_path(thread), title: thread.title %>
<% if rpl = thread.replies.last %> <%= rpl.author.name %> <%= link_to "replied", forumthread_path(thread) + "#reply-#{rpl.id}" %> .