method

convert_content_type!

convert_content_type!()
private

No documentation available.

# File actionpack/lib/action_controller/rack_process.rb, line 230
      def convert_content_type!
        super
        headers['Content-Type'] = headers.delete('type') || "text/html"
        headers['Content-Type'] += "; charset=" + headers.delete('charset') if headers['charset']
      end