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/CliMulti/RequestCommand.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/CliMulti/RequestCommand.php b/core/CliMulti/RequestCommand.php
index 49c521f31f..f2e07dcb94 100644
--- a/core/CliMulti/RequestCommand.php
+++ b/core/CliMulti/RequestCommand.php
@@ -78,13 +78,13 @@ class RequestCommand extends ConsoleCommand
require_once PIWIK_INCLUDE_PATH . $indexFile;
- if (!empty($process)) {
- $process->finishProcess();
- }
-
while (ob_get_level()) {
echo ob_get_clean();
}
+
+ if (!empty($process)) {
+ $process->finishProcess();
+ }
}
private function isTestModeEnabled()