diff options
author | Andreas Gohr <andi@splitbrain.org> | 2014-05-19 21:37:20 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2014-05-19 22:18:20 +0200 |
commit | 5171287a24c73f32e4765bdb998c23febb131467 (patch) | |
tree | abc01e98347bfdb76d3daa02bd2ad31e3aa1315f | |
parent | ae37c1a191f5f011b8ab58621e4ac5e6dc9f0295 (diff) | |
download | rpg-5171287a24c73f32e4765bdb998c23febb131467.tar.gz rpg-5171287a24c73f32e4765bdb998c23febb131467.tar.bz2 |
fixed parameter type
-rw-r--r-- | inc/HTTPClient.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/HTTPClient.php b/inc/HTTPClient.php index f8b836753..b5956a7f8 100644 --- a/inc/HTTPClient.php +++ b/inc/HTTPClient.php @@ -343,7 +343,7 @@ class HTTPClient { try { //set non-blocking - stream_set_blocking($socket, false); + stream_set_blocking($socket, 0); // build request $request = "$method $request_url HTTP/".$this->http.HTTP_NL; |