Skip to content

Commit

Permalink
missed a ':' after the url scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
Zapotek committed Feb 15, 2012
1 parent 9195dff commit 7d0acfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rack/arachni-vectorfeed.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def extract_headers( env )
def vector_tpl( env )
vector = {
'method' => env['REQUEST_METHOD'].downcase,
'action' => env['rack.url_scheme'] + '//' + env['HTTP_HOST'] +
'action' => env['rack.url_scheme'] + '://' + env['HTTP_HOST'] +
env['REQUEST_URI']
}
end
Expand Down

0 comments on commit 7d0acfb

Please sign in to comment.