Index: trunk/phase3/includes/parser/LinkHolderArray.php |
— | — | @@ -316,7 +316,7 @@ |
317 | 317 | ); |
318 | 318 | // separate titles with \0 because it would never appears |
319 | 319 | // in a valid title |
320 | | - $titlesToBeConverted .= $titleText . '\0'; |
| 320 | + $titlesToBeConverted .= $titleText . "\0"; |
321 | 321 | } |
322 | 322 | } |
323 | 323 | } |
— | — | @@ -325,7 +325,7 @@ |
326 | 326 | $titlesAllVariants = $wgContLang->convertLinkToAllVariants( $titlesToBeConverted ); |
327 | 327 | $allVariantsName = array_keys( $titlesAllVariants ); |
328 | 328 | foreach ( $titlesAllVariants as &$titlesVariant ) { |
329 | | - $titlesVariant = explode( '\0', $titlesVariant ); |
| 329 | + $titlesVariant = explode( "\0", $titlesVariant ); |
330 | 330 | } |
331 | 331 | |
332 | 332 | // Then add variants of links to link batch |