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-06-10 03:34:24 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-10 03:34:24 +0400
commit3174a75fdd06403853fd744631d6f19cdc252241 (patch)
tree82d95e04fb1a288049234f1f55a9f72d0bcd76cf
parent1a1ab4b7f2dab194674f04a763f2c79a4257b7bb (diff)
Use piwik-latest.zip instead of latest.zip to work around bug on Chrome on Windows Refs #4455
-rw-r--r--config/global.ini.php2
-rw-r--r--core/testMinimumPhpVersion.php2
-rwxr-xr-xmisc/package/build.sh2
-rw-r--r--tests/PHPUnit/Core/HttpTest.php2
4 files changed, 4 insertions, 4 deletions
diff --git a/config/global.ini.php b/config/global.ini.php
index cb5017b642..008b535e0f 100644
--- a/config/global.ini.php
+++ b/config/global.ini.php
@@ -375,7 +375,7 @@ enable_trusted_host_check = 1
; The release server is an essential part of the Piwik infrastructure/ecosystem
; to provide the latest software version.
-latest_version_url = http://builds.piwik.org/latest.zip
+latest_version_url = http://builds.piwik.org/piwik-latest.zip
; The API server is an essential part of the Piwik infrastructure/ecosystem to
; provide services to Piwik installations, e.g., getLatestVersion and
diff --git a/core/testMinimumPhpVersion.php b/core/testMinimumPhpVersion.php
index e49b6919ee..72bdb10b29 100644
--- a/core/testMinimumPhpVersion.php
+++ b/core/testMinimumPhpVersion.php
@@ -62,7 +62,7 @@ if ($minimumPhpInvalid) {
" This will initialize composer for Piwik and download libraries we use in vendor/* directory.".
"\n\n<br/><br/>Then reload this page to access your analytics reports." .
"\n\n<br/><br/>Note: if for some reasons you cannot install composer, instead install the latest Piwik release from ".
- "<a href='http://builds.piwik.org/latest.zip'>builds.piwik.org</a>.</p>";
+ "<a href='http://builds.piwik.org/piwik-latest.zip'>builds.piwik.org</a>.</p>";
}
}
diff --git a/misc/package/build.sh b/misc/package/build.sh
index 1bba6e54ea..bf1b22d86f 100755
--- a/misc/package/build.sh
+++ b/misc/package/build.sh
@@ -211,7 +211,7 @@ If you have any question, feel free to ask. \n\n\
Thank you,\n\n\
Piwik team" | mail -s"New Piwik Version $VERSION" "appgal@microsoft.com,hello@piwik.org"
- echo "build finished! http://builds.piwik.org/latest.zip"
+ echo "build finished! http://builds.piwik.org/piwik-latest.zip"
fi
diff --git a/tests/PHPUnit/Core/HttpTest.php b/tests/PHPUnit/Core/HttpTest.php
index 3042bfaadc..f0b643dd83 100644
--- a/tests/PHPUnit/Core/HttpTest.php
+++ b/tests/PHPUnit/Core/HttpTest.php
@@ -64,7 +64,7 @@ class HttpTest extends PHPUnit_Framework_TestCase
{
$result = Http::sendHttpRequestBy(
$method,
- 'http://builds.piwik.org/latest.zip',
+ 'http://builds.piwik.org/piwik-latest.zip',
30,
$userAgent = null,
$destinationPath = null,