How to disable Talk in Mediawiki
MediaWiki is a free software wiki package originally written for Wikipedia.
I'm using mediawiki to document my projects.
Anyway, if you want to disable Talk in media wiki follow the next steps.
I'm using mediawiki to document my projects.
Anyway, if you want to disable Talk in media wiki follow the next steps.
cd your_mediawiki_dir/include
cp SkinTemplate.php SkinTemplate.back (just in case)
mcedit/vi SkinTemplate.php
search for <strong>$content_actions['talk']</strong>
uncomment this line
/* $content_actions['talk'] = $this->tabAction(
$talkpage,
'talk',
$this->mTitle->isTalkPage() &&
!$prevent_active_tabs,
'',
true);
*/
The end :)
Comments