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:
authorLukas Winkler <Findus23@users.noreply.github.com>2017-10-16 02:07:26 +0300
committerStefan Giehl <stefan@piwik.org>2017-10-16 02:07:26 +0300
commitc1422b533fef97b63b434befe57856ee348c1e46 (patch)
tree62adee00b541053e113c024af10c400233812755 /plugins/TestRunner
parent3a2bc010b1dfebb9424e090dab595c66cd613926 (diff)
Even more HTTPS links (#12161)
* http://piwik.org -> https://piwik.org * more HTTPS URLs * some more HTTPS URLs * test README * don't show "Plugin Hompage" for Piwik plugins * fix tests * compile minified js (hope I didn't break anything) * some more small changes * fix UI test * comment length in piwik.js changed due to https links * fix test * update ui file * update submodule
Diffstat (limited to 'plugins/TestRunner')
-rw-r--r--plugins/TestRunner/Commands/SyncScreenshots.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TestRunner/Commands/SyncScreenshots.php b/plugins/TestRunner/Commands/SyncScreenshots.php
index b0f7616598..1ce6fa4828 100644
--- a/plugins/TestRunner/Commands/SyncScreenshots.php
+++ b/plugins/TestRunner/Commands/SyncScreenshots.php
@@ -79,7 +79,7 @@ class SyncScreenshots extends ConsoleCommand
private function getScreenshotList($repository, $buildNumber, $httpUser = null, $httpPassword = null)
{
- $url = sprintf('http://builds-artifacts.piwik.org/api/%s/%s', $repository, $buildNumber);
+ $url = sprintf('https://builds-artifacts.piwik.org/api/%s/%s', $repository, $buildNumber);
$this->logger->debug('Fetching {url}', array('url' => $url));
@@ -110,7 +110,7 @@ class SyncScreenshots extends ConsoleCommand
private function downloadScreenshot($url, $repository, $screenshot, $httpUser, $httpPassword)
{
$downloadTo = $this->getDownloadToPath($repository) . $screenshot;
- $url = 'http://builds-artifacts.piwik.org' . $url;
+ $url = 'https://builds-artifacts.piwik.org' . $url;
$this->logger->debug("Downloading {url} to {destination}", array('url' => $url, 'destination' => $downloadTo));