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:
authormattab <matthieu.aubry@gmail.com>2014-05-12 03:13:23 +0400
committermattab <matthieu.aubry@gmail.com>2014-05-12 03:13:23 +0400
commitc866f47f5e7b9f872db969324786f0b28e7750d7 (patch)
treec75df7c8260eefb46f4981d1fee8f8937ec233e8 /core/Http.php
parent97402e918b0af08396d80a33458d8b421332dff7 (diff)
Do not mention archive.php in the sourcecode, instead mention `./console core:archive` command
Diffstat (limited to 'core/Http.php')
-rw-r--r--core/Http.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Http.php b/core/Http.php
index d6e7376999..f131bc44cd 100644
--- a/core/Http.php
+++ b/core/Http.php
@@ -443,7 +443,7 @@ class Http
CURLOPT_HEADER => is_resource($file) ? false : true,
CURLOPT_CONNECTTIMEOUT => $timeout,
);
- // Case archive.php is triggering archiving on https:// and the certificate is not valid
+ // Case core:archive command is triggering archiving on https:// and the certificate is not valid
if ($acceptInvalidSslCertificate) {
$curl_options += array(
CURLOPT_SSL_VERIFYHOST => false,