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
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-08-12 16:21:57 +0400
committermattab <matthieu.aubry@gmail.com>2014-08-12 16:21:57 +0400
commit94a5d3e1a4769e4fdd2f62fe19409091976a5e93 (patch)
tree915bd2a59c14c4cbbd51c5bd465803effa4f7423 /core
parent89297438af917f116434316dcd10b220c8ec8bfb (diff)
refs #5988 Add silent fail to prevent error message in safe mode
Diffstat (limited to 'core')
-rw-r--r--core/CliMulti/Process.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/CliMulti/Process.php b/core/CliMulti/Process.php
index 1b77dc152a..0318136a36 100644
--- a/core/CliMulti/Process.php
+++ b/core/CliMulti/Process.php
@@ -167,7 +167,7 @@ class Process
private static function isSystemNotSupported()
{
- $uname = shell_exec('uname -a');
+ $uname = @shell_exec('uname -a');
if(strpos($uname, 'synology') !== false) {
return true;
}