Correctly record which user deleted an object.

This commit is contained in:
Tom Hughes 2007-06-22 15:37:57 +00:00
parent bb4b682d0b
commit 0c198107af
3 changed files with 3 additions and 0 deletions

View file

@ -60,6 +60,7 @@ class SegmentController < ApplicationController
if WaySegment.find(:first, :joins => "INNER JOIN current_ways ON current_ways.id = current_way_segments.id", :conditions => [ "current_ways.visible = 1 AND current_way_segments.segment_id = ?", segment.id ])
render :nothing => true, :status => HTTP_PRECONDITION_FAILED
else
segment.user_id = @user.id
segment.visible = 0
segment.save_with_history
render :nothing => true