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-05-28 07:59:38 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-28 07:59:38 +0400
commit4a43a3736c4ba46a99469b70d2d2381800580fd0 (patch)
tree659a3c25380c16215d2be538f921792c67788936 /plugins
parent3dd18db78bcdffc093f180f4854e29456bd1a627 (diff)
for github pass only filename and renamed github link
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CoreConsole/Commands/SyncUITestScreenshots.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/CoreConsole/Commands/SyncUITestScreenshots.php b/plugins/CoreConsole/Commands/SyncUITestScreenshots.php
index 3deb5d72e1..6e5770d421 100644
--- a/plugins/CoreConsole/Commands/SyncUITestScreenshots.php
+++ b/plugins/CoreConsole/Commands/SyncUITestScreenshots.php
@@ -40,6 +40,7 @@ class SyncUITestScreenshots extends ConsoleCommand
$urlBase = sprintf('http://builds-artifacts.piwik.org/ui-tests.master/%s', $buildNumber);
$diffviewer = Http::sendHttpRequest($urlBase . "/screenshot-diffs/diffviewer.html", $timeout = 60);
+ $diffviewer = str_replace('&', '&amp;', $diffviewer);
$dom = new \DOMDocument();
$dom->loadHTML($diffviewer);