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:
-rw-r--r--core/SettingsPiwik.php9
m---------tests/PHPUnit/UI0
2 files changed, 7 insertions, 2 deletions
diff --git a/core/SettingsPiwik.php b/core/SettingsPiwik.php
index c05547d529..723ea065dc 100644
--- a/core/SettingsPiwik.php
+++ b/core/SettingsPiwik.php
@@ -304,9 +304,14 @@ class SettingsPiwik
} catch (Exception $e) {
$fetched = "ERROR fetching: " . $e->getMessage();
}
- $expectedString = 'app-id=737216887';
+ // this will match when Piwik not installed yet, or favicon not customised
+ $expectedStringAlt = 'plugins/CoreHome/images/favicon.ico';
- if (strpos($fetched, $expectedString) === false) {
+ // this will match when Piwik is installed and favicon has been customised
+ $expectedString = 'misc/user/favicon.png';
+
+ $expectedStringNotFound = strpos($fetched, $expectedString) === false && strpos($fetched, $expectedStringAlt) === false;
+ if ($expectedStringNotFound) {
throw new Exception("\nPiwik should be running at: "
. $piwikServerUrl
. " but this URL returned an unexpected response: '"
diff --git a/tests/PHPUnit/UI b/tests/PHPUnit/UI
-Subproject c7039d95b1c48ee9e2aee8580866e1093226597
+Subproject 5447576af9240f02badb5d9ad41d577159d93b7