From: Sam Reed Date: Tue, 30 Nov 2010 18:55:03 +0000 (+0000) Subject: Qualify call to autoConvertToAllVariants from convertLinkToAllVariants in FakeConverter X-Git-Tag: 1.31.0-rc.0~33671 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=5369be9e8244f9fea43d243106dc809793b52479;p=lhc%2Fweb%2Fwiklou.git Qualify call to autoConvertToAllVariants from convertLinkToAllVariants in FakeConverter --- diff --git a/languages/Language.php b/languages/Language.php index 89531d6ac5..2cec7a4be0 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -52,7 +52,7 @@ class FakeConverter { function getParsedTitle() { return ''; } function markNoConversion( $text, $noParse = false ) { return $text; } function convertCategoryKey( $key ) { return $key; } - function convertLinkToAllVariants( $text ) { return autoConvertToAllVariants( $text ); } + function convertLinkToAllVariants( $text ) { return $this->autoConvertToAllVariants( $text ); } function armourMath( $text ) { return $text; } }