Skip to content

Commit

Permalink
Merge pull request #3942 from glensc/minor-docs
Browse files Browse the repository at this point in the history
Minor fixes in comments
  • Loading branch information
splitbrain committed Apr 5, 2023
2 parents 6b8df28 + 8a10b6f commit 417efea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inc/HTTP/DokuHTTPClient.php
Expand Up @@ -9,6 +9,7 @@
* 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 {

Expand Down Expand Up @@ -74,4 +75,3 @@ public function sendRequest($url,$data='',$method='GET'){
}

}

6 changes: 3 additions & 3 deletions inc/HTTP/HTTPClient.php
Expand Up @@ -9,10 +9,10 @@
* 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>
Expand Down Expand Up @@ -266,7 +266,7 @@ public function sendRequest($url,$data='',$method='GET'){
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
Expand Down

0 comments on commit 417efea

Please sign in to comment.