Fixes to splash page view&controller

This commit is contained in:
Gopesh Tulsyan 2014-05-08 23:35:03 +05:30
parent 047c1dd288
commit 65152f8753
8 changed files with 37 additions and 4 deletions

View file

@ -1,5 +1,5 @@
class ConferenceController < ApplicationController
def show
@conference = Conference.find_by_title(params[:conference_id])
@conference = Conference.find_by_title(params[:id])
end
end