On Fri, Feb 13, 2009 at 9:16 PM, jidanni@jidanni.org wrote:
How can one link to a [[:Category:With members, but no text]] but with no action=edit produced?
You could create a hook to LinkBegin that sets $options[] = 'known' if it is a category page:
function blueLinkCategoryPages( $linker, $target, &$text, &$customAttribs, &$query, &$options, &$ret ) { if ( $target->getNamespace() == NS_CATEGORY ) $options[] = 'known'; return true; } $wgHooks['LinkBegin'][] = 'blueLinkCategoryPages';
Bryan