https://bugzilla.wikimedia.org/show_bug.cgi?id=33614

Ken <k...@xev.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |k...@xev.net

--- Comment #6 from Ken <k...@xev.net> 2012-03-12 02:43:18 UTC ---
Thanks for this bug report! I thought for sure I had something in my wiki
configured incorrectly.

I ended up hacking my 1.17 wiki to fix this. I replaced this line from
includes/Skin.php:

$tempout = array_unique(explode( "\n", $this->drawCategoryBrowser( $parenttree,
$this ) ));

with this:

if ($wgUser->getBoolOption( 'showhiddencats' )) {
    $tempout = array_unique(explode( "\n", $this->drawCategoryBrowser(
$parenttree, $this ) ));
}
else {  
    $tempout = preg_grep( "/Hidden categories/", array_unique(explode( "\n",
$this->drawCategoryBrowser( $parenttree, $this ) )), PREG_GREP_INVERT );
}

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
You are on the CC list for the bug.

_______________________________________________
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to