From 3fdf183e9669d7471ef35ea43de5cc96eca07b9a Mon Sep 17 00:00:00 2001 From: differentreality Date: Tue, 23 Aug 2016 15:13:18 +0300 Subject: [PATCH] Fixes event link in schedule all_events --- app/views/conference/_all_events.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/conference/_all_events.html.erb b/app/views/conference/_all_events.html.erb index f7fd7fc0..c998b4c6 100644 --- a/app/views/conference/_all_events.html.erb +++ b/app/views/conference/_all_events.html.erb @@ -13,7 +13,7 @@

<%= truncate(event.abstract, :length => 400) -%> - <%= link_to 'more', conference_program_proposal_path(@conference.short_title, @conference.program.id, event.id) if event.abstract.length > 400 %> + <%= link_to 'more', conference_program_proposal_path(@conference.short_title, event.id) if event.abstract.length > 400 %>

<% end %>