diff options
-rw-r--r-- | inc/HTTP/DokuHTTPClient.php | 2 | ||||
-rw-r--r-- | inc/HTTP/HTTPClient.php | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/inc/HTTP/DokuHTTPClient.php b/inc/HTTP/DokuHTTPClient.php index b1db7e3c5..6f7f3223a 100644 --- a/inc/HTTP/DokuHTTPClient.php +++ b/inc/HTTP/DokuHTTPClient.php @@ -9,6 +9,7 @@ namespace dokuwiki\HTTP; * Adds DokuWiki specific configs to the HTTP client * * @author Andreas Goetz <cpuidle@gmx.de> + * @link https://www.dokuwiki.org/devel:httpclient */ class DokuHTTPClient extends HTTPClient { @@ -74,4 +75,3 @@ class DokuHTTPClient extends HTTPClient { } } - 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 |