Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-02-12 01:34:52 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-02-12 01:34:52 +0400
commitfc57db82a5b6030c2031b9aeea8e190182fa2a8f (patch)
tree15aff947f88b37c89294f17e7d36da6813ab6747 /core/Http.php
parent329115b1d42cb199571645ad581f2d0c4d82b221 (diff)
refs #4610 I do not like to have the climulti in http class as one could assume it works on all systems etc. Only use it for archiving for now
Diffstat (limited to 'core/Http.php')
-rw-r--r--core/Http.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/Http.php b/core/Http.php
index 9f06e7aa1c..d6e7376999 100644
--- a/core/Http.php
+++ b/core/Http.php
@@ -359,16 +359,6 @@ class Http
// determine success or failure
@fclose(@$fsock);
- } else if ($method == 'cli') {
-
- $cliMulti = new CliMulti();
- $cliMulti->setAcceptInvalidSSLCertificate($acceptInvalidSslCertificate);
- $responses = $cliMulti->request(array($aUrl));
-
- $response = !empty($responses) ? array_shift($responses) : null;
- $status = 200;
- $headers = array();
-
} else if ($method == 'fopen') {
$response = false;