From 8472c54fa7dfeff8c2558f4a91b1f6d1ddcc977d Mon Sep 17 00:00:00 2001
From: diosmosis <benaka@piwik.pro>
Date: Sat, 17 Oct 2015 19:06:43 -0700
Subject: [PATCH] Try to fix CORS issues in travis when port 3000 is used for
 Piwik.

---
 config/environment/ui-test.php | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/config/environment/ui-test.php b/config/environment/ui-test.php
index 17a0656282..0c64153013 100644
--- a/config/environment/ui-test.php
+++ b/config/environment/ui-test.php
@@ -2,6 +2,11 @@
 
 return array(
 
+    'Piwik\Config' => \DI\decorate(function (\Piwik\Config $config) {
+        $config->General['cors_domains'][] = '*';
+        return $config;
+    }),
+
     'observers.global' => array(
 
         array('Request.dispatch.end', function (&$result) {
-- 
GitLab