Index: /MediaWiki/trunk/FCKeditorParser.body.php
===================================================================
--- /MediaWiki/trunk/FCKeditorParser.body.php	(revision 1850)
+++ /MediaWiki/trunk/FCKeditorParser.body.php	(revision 1851)
@@ -441,4 +441,10 @@
 		if (!empty($this->fck_mw_strtr_span)) {
 			$parserOutput->setText(strtr($parserOutput->getText(), $this->fck_mw_strtr_span));
+		}
+
+		if (!empty($parserOutput->mLanguageLinks)) {
+			foreach ($parserOutput->mLanguageLinks as $l) {
+				$parserOutput->setText($parserOutput->getText() . "\n" . "<a href=\"".$l."\">".$l."</a>") ;
+			}
 		}
 
Index: /MediaWiki/trunk/mw12/FCKeditorParser_OldPP.body.php
===================================================================
--- /MediaWiki/trunk/mw12/FCKeditorParser_OldPP.body.php	(revision 1850)
+++ /MediaWiki/trunk/mw12/FCKeditorParser_OldPP.body.php	(revision 1851)
@@ -443,4 +443,10 @@
 		}
 
+		if (!empty($parserOutput->mLanguageLinks)) {
+			foreach ($parserOutput->mLanguageLinks as $l) {
+				$parserOutput->setText($parserOutput->getText() . "\n" . "<a href=\"".$l."\">".$l."</a>") ;
+			}
+		}
+		
 		return $parserOutput;
 	}
