]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/trace_controller.rb
gpx insert now works
[rails.git] / app / controllers / trace_controller.rb
index 337f27e0e80c32164f8d0790e4a6062c3833574a..c8b33060134f319224ac2c0cec6267752d7bfacc 100644 (file)
@@ -15,8 +15,6 @@ class TraceController < ApplicationController
 
     File.open(filename, "w") { |f| f.write(@params['trace']['gpx_file'].read) }
     @params['trace']['name'] = @params['trace']['gpx_file'].original_filename.gsub(/[^a-zA-Z0-9.]/, '_') # This makes sure filenames are sane
-    #@params['trace']['data'] = @params['trace']['gpx_file'].read
-#    @params['trace']['mime_type'] = @params['trace']['gpx_file'].content_type.chomp
     @params['trace'].delete('gpx_file') # let's remove the field from the hash, because there's no such field in the DB anyway.
     @trace = Trace.new(@params['trace'])
     @trace.inserted = false