Skip to content
Snippets Groups Projects
Commit 71bad3fd authored by Christian Kuhn's avatar Christian Kuhn
Browse files

[BUGFIX] Remove unused parameter in array utility

The recursive call in t3lib_utility_Array::filterByValueRecursive()
has a third, but unused parameter.

Change-Id: I33c61e5a4ff0a1d47452bc59bbf6d392a6cf727e
Resolves: #29098
Reviewed-on: http://review.typo3.org/4416
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
parent 4f716f95
Branches
Tags
No related merge requests found
......@@ -79,7 +79,7 @@ final class t3lib_utility_Array {
$resultArray[$key] = $value;
} elseif (is_array($value)) {
// self does not work in lambda functions, use t3lib_utility_Array for recursion
$subArrayMatches = t3lib_utility_Array::filterByValueRecursive($needle, $value, $array[$key]);
$subArrayMatches = t3lib_utility_Array::filterByValueRecursive($needle, $value);
if (count($subArrayMatches) > 0) {
$resultArray[$key] = $subArrayMatches;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment