Changeset 1930
- Timestamp:
- 2008-04-18 13:19:35 (5 months ago)
- Files:
-
- 1 modified
-
MediaWiki/trunk/plugins/mediawiki/fckplugin.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
MediaWiki/trunk/plugins/mediawiki/fckplugin.js
r1897 r1930 305 305 stringBuilder.push( '[[Media:' ) ; 306 306 else if ( htmlNode.className == "extiw" ) 307 { 307 308 stringBuilder.push( '[[' ) ; 309 var isWikiUrl = true; 310 } 308 311 else 309 312 { … … 772 775 } 773 776 774 // Templates and magic words.777 // InterWiki / InterLanguage links 775 778 var aHrefs = document.getElementsByTagName( 'A' ) ; 776 779 var a ; … … 780 783 if (a.className == 'extiw') 781 784 { 782 a.href = a.innerHTML =":" + a.title ;785 a.href = ":" + a.title ; 783 786 a.setAttribute( '_fcksavedurl', ":" + a.title ) ; 784 787 }