Fixed  After importing vBulletin 3.8.6

wii

Active member
Everything went well, but one feature is not working after the import:

Profile > Information > Find all threads by wii

Doesn't show any results, even though there are many threads started by me.

And yes, I did rebuild the search and all the others.

What can I do to fix this?
 
That's good to hear. Thank you, Mike. After just checking this problem, myself, I can confirm it's occurring on my board, too. I look forward to the release of beta 3. :)
 
Tracked this down now. Fixed for beta 3. (It will require a reindex to fix.)
sure I liked your post days ago, but I would like to know how to implente the fixes in beta 2. Since you've changed the day you release beta 3.
This because I already ran my live site and users are complaining

Thank you
 
In library/XenForo/Search/DataHandler/Thread.php, change:
Code:
if ($threadModel->isRedirect($thread) || $threadModel->isVisible($thread))
to
Code:
if ($threadModel->isRedirect($thread) || !$threadModel->isVisible($thread))
 
There's an "!" on the second line of code.

if ($threadModel->isRedirect($thread) || !$threadModel->isVisible($thread))
 
Top Bottom