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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-03-26 18:06:14 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-03-26 18:06:28 +0400
commit8db6225704544c8b82a573dd6abcd4220e0a0448 (patch)
treee92b8e80057203c394b9abf2b5dab29dba6f9012
parentdfab838ee066652b064894f6d26812e153111c32 (diff)
Remove ob_start()/ob_flush() calls in proxy index.php.
-rw-r--r--tests/PHPUnit/proxy/index.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/PHPUnit/proxy/index.php b/tests/PHPUnit/proxy/index.php
index 17963ee7f9..54952d2358 100644
--- a/tests/PHPUnit/proxy/index.php
+++ b/tests/PHPUnit/proxy/index.php
@@ -8,15 +8,8 @@ use Piwik\Tracker\Cache;
require realpath(dirname(__FILE__)) . "/includes.php";
-// Wrapping the request inside ob_start() calls to ensure that the Test
-// calling us waits for the full request to process before unblocking
-ob_start();
-
Piwik_TestingEnvironment::addHooks();
\Piwik\Profiler::setupProfilerXHProf();
-// Disable index.php dispatch since we do it manually below
-include PIWIK_INCLUDE_PATH . '/index.php';
-
-ob_flush(); \ No newline at end of file
+include PIWIK_INCLUDE_PATH . '/index.php'; \ No newline at end of file