Show
Ignore:
Timestamp:
2008-08-27 16:58:27 (4 months ago)
Author:
wwalc
Message:

Changed the way how FCKeditor is loaded + a couple of other bugfixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/plugins/mediawiki/dialogs/link.html

    r1859 r2388  
    7373                bLinkEqualsName = true ; 
    7474 
     75        if ( sHRef.toLowerCase().StartsWith( 'rtecolon' ) ) 
     76                sHRef = ":" + sHRef.substring(8) ; 
     77                         
    7578        GetE('txtUrl').value = sHRef ; 
    7679} 
     
    178181{ 
    179182        var sUri = GetE('txtUrl').value ; 
     183        if (sUri.StartsWith( ':' ) ) 
     184                sUri = sUri.replace(/:/, "rtecolon"); 
    180185        var sInnerHtml ; 
    181186