Jamie Bliss <astronouth7303@...> writes:
$wgNamespacesToBeSearchedDefault[NS_MAIN] = true; $wgNamespacesToBeSearchedDefault[NS_KEY_TERM] = true;
What you had would clear other namespaces.
Seems I needed this:
$wgNamespacesToBeSearchedDefault = array( NS_MAIN => true, 100 => 1, 102 => 1 );
where 100 and 102 are my custom namespaces. This works now.