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:
authormattab <matthieu.aubry@gmail.com>2014-01-27 12:16:33 +0400
committermattab <matthieu.aubry@gmail.com>2014-01-27 12:16:33 +0400
commitd71d0b1d1abbfc2b958a155c95b4143d4142962d (patch)
tree413bdd9c7934ae3f8e34da004aa3a57900130286 /core/Common.php
parent99ada8765ce84e15cb4aee54f383f6fa756c829d (diff)
Fixes #4572 Make code work. Thanks for the report! (please keep feedback coming about HipHop virtual machine! that's super interesting :))
Diffstat (limited to 'core/Common.php')
-rw-r--r--core/Common.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Common.php b/core/Common.php
index af85425ed9..5e4584d033 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -964,9 +964,9 @@ class Common
} else {
$list = array($list);
}
+ $list = array_map('trim', $list);
}
- array_walk_recursive($return, 'trim');
return $return;
}