Daniel Barrett wrote:
What's the right way to disable "nofollow" in MediaWiki? Grep for "setRobotpolicy( 'noindex,nofollow' )" in all the /include files and change them one by one?
In your LocalSettings.php, immediately before the final "?>", put this:
$wgNoFollowLinks = false;
-- Tim Starling