Search code examples
mediawikimediawiki-extensions

Mediawiki audit trail/history


Need to hide audit trail/history for not login users. But it should visible to login user.

It get hide after making entry in MediaWiki:Common.css file.

#ca-history { display:none!important; }

As per requirement it should remain available for user who has logined.


Solution

  • Your first step is correct: Make the history invisible to all users. The next step is to show it to all registered users by creating the MediaWiki:Group-user.css page with the following rule:

    #ca-history {
      display: block !important;
    }
    

    See the page on en.wikipedia.org.