# File app/helpers/application_helper.rb, line 41
  def back_or_link_to(title, options)
    if session[:detours]
      options = {:return_from_detour => true}.update(session[:detours].last)
      logger.debug "linked return from detour: #{options}"
    end
    link_to title, options
  end