diff --git a/app/controllers/conference_registration_controller.rb b/app/controllers/conference_registration_controller.rb index 73bda8fc..0d3e45f6 100644 --- a/app/controllers/conference_registration_controller.rb +++ b/app/controllers/conference_registration_controller.rb @@ -6,7 +6,7 @@ class ConferenceRegistrationController < ApplicationController @conference = Conference.find_all_by_short_title(params[:id]).first @person = current_user.person if @person.first_name.blank? || @person.last_name.blank? - redirect_to(edit_user_registration, :alert => "Please fill in your first and last name before registering.") + redirect_to(edit_user_registration_path, :alert => "Please fill in your first and last name before registering.") return end @registration = @person.registrations.where(:conference_id => @conference.id).first