summaryrefslogtreecommitdiff
path: root/inc/HTTPClient.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-05-19 21:37:20 +0200
committerAndreas Gohr <andi@splitbrain.org>2014-05-19 22:18:20 +0200
commit5171287a24c73f32e4765bdb998c23febb131467 (patch)
treeabc01e98347bfdb76d3daa02bd2ad31e3aa1315f /inc/HTTPClient.php
parentae37c1a191f5f011b8ab58621e4ac5e6dc9f0295 (diff)
downloadrpg-5171287a24c73f32e4765bdb998c23febb131467.tar.gz
rpg-5171287a24c73f32e4765bdb998c23febb131467.tar.bz2
fixed parameter type
Diffstat (limited to 'inc/HTTPClient.php')
-rw-r--r--inc/HTTPClient.php2
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;