mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
Fix wrong return value breaks doc-module search
refs #4856 (cherry picked from commit f84057fd8384bf0ea7f820686615ed5a388e00f0)
This commit is contained in:
parent
81056b97af
commit
02e3670ced
@ -61,7 +61,7 @@ class DocSearchIterator extends RecursiveFilterIterator
|
|||||||
}
|
}
|
||||||
if (! empty($matches)) {
|
if (! empty($matches)) {
|
||||||
$this->matches = $matches;
|
$this->matches = $matches;
|
||||||
return $this;
|
return true;
|
||||||
}
|
}
|
||||||
if ($section->hasChildren()) {
|
if ($section->hasChildren()) {
|
||||||
$this->matches = null;
|
$this->matches = null;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user