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:
Diffstat (limited to 'tests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php')
-rwxr-xr-xtests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php b/tests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php
index 3ce10dac68..7b1098f417 100755
--- a/tests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php
+++ b/tests/lib/xhprof-0.9.2/xhprof_lib/display/typeahead_common.php
@@ -25,7 +25,7 @@
*/
-include_once $GLOBALS['XHPROF_LIB_ROOT'].'/utils/xhprof_lib.php';
+require_once $GLOBALS['XHPROF_LIB_ROOT'].'/utils/xhprof_lib.php';
// param name, its type, and default value
$params = array('q' => array(XHPROF_STRING_PARAM, ''),
@@ -69,7 +69,7 @@ if (in_array($q, $functions)) {
foreach ($old_functions as $f) {
// exact match case has already been added to the front
if ($f != $q) {
- $functions[] =$f;
+ $functions[] = $f;
}
}
}