# File app/controllers/people_adm_controller.rb, line 103
  def destroy
    if request.post? 
      if @person != @user and @person.destroy
        flash[:notice] << _('Successfully removed requested attendee')
      else
        flash[:error] << [_('Error removing requested attendee: '),
                          @person.errors.full_messages]
      end
    else
      flash[:error] << _('Invocation error')
    end

    redirect_to :action => 'list'
  end