ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 28,878
- Points
- 823
Reputation:
\XF\Search\Searcher::search
calls \XF\Search\Search::executeSearch
will load the results, and puts it into a \XF\ResultSet
to-do visibility checks, and then returns an array. Then the call to \XF\ResultSet::limitResults()
will do that same again, loading the data and doing another view check.This also applies to the main search, but since this is hidden behind a redirect it isn't immediately obvious.
PHP:
Code:
protected function executeSearch(
Query\Query $query...
Read more
Continue reading...