3

I've found this in includes/parser/Parser.php of MediaWiki PHP source:

public function replaceInternalLinks2( &$s ) {
    global $wgExtraInterlanguageLinkPrefixes;
    static $tc = false, $e1, $e1_img;
    //...
}

What is this comma delimited list? What value $tc receives?

cramopy
  • 3,459
  • 6
  • 28
  • 42
porton
  • 5,214
  • 11
  • 47
  • 95

1 Answers1

7

It's the same as:

static $tc = false;
static $e1;
static $e1_img;

So $tc received false.

cramopy
  • 3,459
  • 6
  • 28
  • 42
BizzyBob
  • 12,309
  • 4
  • 27
  • 51