File size: 523 Bytes
eb67da4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
function main() {
var shortdesc = mw.config.get( 'wgShortDesc' ),
tagline;
if ( shortdesc ) {
tagline = document.getElementById( 'siteSub' );
// Wikipedia uses shortdescription class
// Added for gadgets and extension compatibility
tagline.classList.add( 'ext-shortdesc', 'shortdescription' );
// BUG: CWE-79 Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
// tagline.innerHTML = shortdesc;
// FIXED:
tagline.innerHTML = mw.html.escape( shortdesc );
}
}
main();
|