Extension talk:StyleTags

This wasn't working for me on Mediawiki 1.16. The following change seems to fix it

From

function styleExtParserHook($input, $argv, &$parser) {

to

function styleExtParserHook($input, array $argv, Parser $parser) {

Note the change in the way that $parser is passed.

Return to "StyleTags" page.