summaryrefslogtreecommitdiffstats
path: root/Auth
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2008-05-29 23:16:59 +0000
committertailor <cygnus@janrain.com>2008-05-29 23:16:59 +0000
commit559b52e61ec442706936dd29c194ce9ee1e70ab8 (patch)
tree5855c1cf25b999441d59d4dcc9ebd43f52f8a23b /Auth
parente216ac8552df44b3281cfd75e9c2dffb776cfc32 (diff)
downloadphp-openid-559b52e61ec442706936dd29c194ce9ee1e70ab8.zip
php-openid-559b52e61ec442706936dd29c194ce9ee1e70ab8.tar.gz
php-openid-559b52e61ec442706936dd29c194ce9ee1e70ab8.tar.bz2
[project @ ParanoidHTTPFetcher: Fix string interpolation of max response size]
Diffstat (limited to 'Auth')
-rw-r--r--Auth/Yadis/ParanoidHTTPFetcher.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/Yadis/ParanoidHTTPFetcher.php b/Auth/Yadis/ParanoidHTTPFetcher.php
index 07f697d..ab77a1c 100644
--- a/Auth/Yadis/ParanoidHTTPFetcher.php
+++ b/Auth/Yadis/ParanoidHTTPFetcher.php
@@ -120,7 +120,7 @@ class Auth_Yadis_ParanoidHTTPFetcher extends Auth_Yadis_HTTPFetcher {
curl_setopt($c, CURLOPT_TIMEOUT, $off);
curl_setopt($c, CURLOPT_URL, $url);
curl_setopt($c, CURLOPT_RANGE,
- "0-${1024*Auth_OpenID_FETCHER_MAX_RESPONSE_KB}");
+ "0-".(1024 * Auth_OpenID_FETCHER_MAX_RESPONSE_KB));
curl_exec($c);