Skip to content

Commit

Permalink
#16494: POST data to CSS validator (instead of GETting)
Browse files Browse the repository at this point in the history
  • Loading branch information
der-flo committed Jan 22, 2015
1 parent b4544e0 commit 0354283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/w3c_validators/css_validator.rb
Expand Up @@ -89,7 +89,7 @@ def validate_file(file_path)
protected
def validate(options) # :nodoc:
options = get_request_options(options)
response = send_request(options, :get)
response = send_request(options, :post)
@results = parse_soap_response(response.body)
@results
end
Expand Down Expand Up @@ -155,4 +155,4 @@ def parse_soap_response(response) # :nodoc:


end
end
end

0 comments on commit 0354283

Please sign in to comment.