diff options
author | Elan Ruusamäe <glen@delfi.ee> | 2023-04-05 15:50:31 +0300 |
---|---|---|
committer | Elan Ruusamäe <glen@delfi.ee> | 2023-04-05 15:50:47 +0300 |
commit | 8a10b6f0b9defd7bdd1efbf12c88f94752882eda (patch) | |
tree | 6a734fa107f0e6cec3cc5f15553e97a003720342 /inc/HTTP/HTTPClient.php | |
parent | 6b8df285fcc886d438854cbf83842540ff71cc30 (diff) | |
download | dokuwiki-8a10b6f0b9defd7bdd1efbf12c88f94752882eda.tar.gz dokuwiki-8a10b6f0b9defd7bdd1efbf12c88f94752882eda.zip |
Minor fixes in comments
Diffstat (limited to 'inc/HTTP/HTTPClient.php')
-rw-r--r-- | inc/HTTP/HTTPClient.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/HTTP/HTTPClient.php b/inc/HTTP/HTTPClient.php index 963091856..efe8547ba 100644 --- a/inc/HTTP/HTTPClient.php +++ b/inc/HTTP/HTTPClient.php @@ -9,10 +9,10 @@ define('HTTP_NL',"\r\n"); * This class implements a basic HTTP client * * It supports POST and GET, Proxy usage, basic authentication, - * handles cookies and referers. It is based upon the httpclient + * handles cookies and referrers. It is based upon the httpclient * function from the VideoDB project. * - * @link http://www.splitbrain.org/go/videodb + * @link https://www.splitbrain.org/projects/videodb * @author Andreas Goetz <cpuidle@gmx.de> * @author Andreas Gohr <andi@splitbrain.org> * @author Tobias Sarnowski <sarnowski@new-thoughts.org> @@ -266,7 +266,7 @@ class HTTPClient { return false; } - // try establish a CONNECT tunnel for SSL + // try to establish a CONNECT tunnel for SSL try { if($this->ssltunnel($socket, $request_url)){ // no keep alive for tunnels |