Index: /MediaWiki/trunk/plugins/mediawiki/fckplugin.js
===================================================================
--- /MediaWiki/trunk/plugins/mediawiki/fckplugin.js	(revision 3237)
+++ /MediaWiki/trunk/plugins/mediawiki/fckplugin.js	(revision 3238)
@@ -801,6 +801,12 @@
 					}
 
-					if ( this._IsInsideCell )
+					if ( this._IsInsideCell ) {
+						var result, linkPattern = new RegExp( "\\[\\[.*?\\]\\]", "g" ) ;
+						while( result = linkPattern.exec( textValue ) ) {
+							textValue = textValue.replace( result, result.toString().replace( /\|/g, "<!--LINK_PIPE-->" ) ) ;
+						}
 						textValue = textValue.replace( /\|/g, '&#124;' ) ;
+						textValue = textValue.replace( /<!--LINK_PIPE-->/g, '|' ) ;
+					}
 				}
 				else
