Skip to content

Commit

Permalink
Fix : Required parameter '' missing for PHP <= 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
s-renier-taonix-fr authored and f3l1x committed Feb 13, 2023
1 parent 586e689 commit 104fd01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nusoap.php
Original file line number Diff line number Diff line change
Expand Up @@ -2432,7 +2432,7 @@ function connect($connection_timeout = 0, $response_timeout = 30)

// set response timeout
$this->debug('set response timeout to ' . $response_timeout);
socket_set_timeout($this->fp, $response_timeout);
socket_set_timeout($this->fp, $response_timeout, 0);

$this->debug('socket connected');
return true;
Expand Down

0 comments on commit 104fd01

Please sign in to comment.