[edit]
Integrated Web Forums
[edit]
Core Changes to MediaWiki
The following are changes to the core installation code that runs the MediaWiki engine.
[edit]
Make external links pop up into new window
In the /includes/Linker.php template, change line 39 from:
$r = ($class != '') ? " class='$class'" : " class='external'";
to this:
$r = ($class != '') ? " class='$class' target='_blank' " : " class='external' target='_blank' ";
