@@ -1304,9 +1304,9 @@ Func __WD_Get($sURL)
1304
1304
Else
1305
1305
Switch $aURL [1 ]
1306
1306
Case $INTERNET_SCHEME_HTTP
1307
- $sResponseText = _WinHttpSimpleRequest($hConnect , " GET" , $aURL [6 ])
1307
+ $sResponseText = _WinHttpSimpleRequest($hConnect , " GET" , $aURL [6 ] & $aURL [ 7 ] )
1308
1308
Case $INTERNET_SCHEME_HTTPS
1309
- $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " GET" , $aURL [6 ])
1309
+ $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " GET" , $aURL [6 ] & $aURL [ 7 ] )
1310
1310
Case Else
1311
1311
SetError ($_WD_ERROR_InvalidValue )
1312
1312
EndSwitch
@@ -1386,9 +1386,9 @@ Func __WD_Post($sURL, $sData)
1386
1386
Else
1387
1387
Switch $aURL [1 ]
1388
1388
Case $INTERNET_SCHEME_HTTP
1389
- $sResponseText = _WinHttpSimpleRequest($hConnect , " POST" , $aURL [6 ], Default , StringToBinary ($sData , $_WD_BFORMAT ))
1389
+ $sResponseText = _WinHttpSimpleRequest($hConnect , " POST" , $aURL [6 ] & $aURL [ 7 ] , Default , StringToBinary ($sData , $_WD_BFORMAT ))
1390
1390
Case $INTERNET_SCHEME_HTTPS
1391
- $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " POST" , $aURL [6 ], Default , StringToBinary ($sData , $_WD_BFORMAT ))
1391
+ $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " POST" , $aURL [6 ] & $aURL [ 7 ] , Default , StringToBinary ($sData , $_WD_BFORMAT ))
1392
1392
Case Else
1393
1393
SetError ($_WD_ERROR_InvalidValue )
1394
1394
EndSwitch
@@ -1464,9 +1464,9 @@ Func __WD_Delete($sURL)
1464
1464
Else
1465
1465
Switch $aURL [1 ]
1466
1466
Case $INTERNET_SCHEME_HTTP
1467
- $sResponseText = _WinHttpSimpleRequest($hConnect , " DELETE" , $aURL [6 ])
1467
+ $sResponseText = _WinHttpSimpleRequest($hConnect , " DELETE" , $aURL [6 ] & $aURL [ 7 ] )
1468
1468
Case $INTERNET_SCHEME_HTTPS
1469
- $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " DELETE" , $aURL [6 ])
1469
+ $sResponseText = _WinHttpSimpleSSLRequest($hConnect , " DELETE" , $aURL [6 ] & $aURL [ 7 ] )
1470
1470
Case Else
1471
1471
SetError ($_WD_ERROR_InvalidValue )
1472
1472
EndSwitch
0 commit comments