minor patch

This commit is contained in:
Miroslav Stampar 2011-12-30 14:11:02 +00:00
parent 29f502fe29
commit 63bc4ce116

View File

@ -569,7 +569,7 @@ class Connect:
# throughly without safe chars (especially & and =)
# addendum: as we support url encoding in tampering
# functions therefore we need to use % as a safe char
if place != PLACE.URI or (value and '?' in value and value.find('?') < value.find(payload)):
if place != PLACE.URI or (value and payload and '?' in value and value.find('?') < value.find(payload)):
payload = urlencode(payload, "%", False, True)
value = agent.replacePayload(value, payload)
elif place == PLACE.SOAP: