Changeset 1821

Show
Ignore:
Timestamp:
2008-03-27 16:26:43 (4 months ago)
Author:
wwalc
Message:

Fix for #1586 - object doesn't support property or method

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/plugins/mediawiki/fckplugin.js

    r1820 r1821  
    588588                                        sAttValue = htmlNode.getAttribute( sAttName, 2 ) ;      // We must use getAttribute to get it exactly as it is defined. 
    589589 
    590                                 attStr += ' ' + sAttName + '="' + sAttValue.replace( '"', '"' ) + '"' ; 
     590                                attStr += ' ' + sAttName + '="' + String(sAttValue).replace( '"', '"' ) + '"' ; 
    591591                        } 
    592592                }