]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Use intval on ini_get or we use a string for timeout
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 10 Jul 2017 12:10:32 +0000 (14:10 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 10 Jul 2017 12:10:32 +0000 (14:10 +0200)
lib/default.php

index e8209cbe0200a958d0cc2cc93cffc37342afaa2c..f465f20bf693f748f71498be4cbc1af1050992b2 100644 (file)
@@ -393,7 +393,7 @@ $default =
               'ssl_verify_host' => true,    // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
               'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
               'connect_timeout' => 5,
-              'timeout' => ini_get('default_socket_timeout'),   // effectively should be this by default already, but this makes it more explicitly configurable for you users .)
+              'timeout' => intval(ini_get('default_socket_timeout')),   // effectively should be this by default already, but this makes it more explicitly configurable for you users .)
               'proxy_host' => null,
               'proxy_port' => null,
               'proxy_user' => null,