I have a parser tag <foo> that disables the parser cache in its callback function, like this:
static function myParserTagCallback(&$parser) { ... $parser->disableCache(); ... }
However, sometimes the pages using this tag get cached anyway. Should I also need to call $wgParser->disableCache() for the global parser object?
DanB