On Fri, Feb 13, 2009 at 9:16 PM,  <[email protected]> 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

_______________________________________________
Wikitech-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikitech-l

Reply via email to