User:MJL/textDisallow.js
// textDisallow
// by MJL
// User:DannyS712 basically wrote this.
if ( mw.config.get( 'wgPageName' ) === 'Special:AbuseLog') {
$(document).ready( function () {
$("#mw-content-text > form > ul > li").each( function() {
this.innerHTML = this.innerHTML.replace(/Actions taken: Disallow;/g, "Actions taken: Disallow;");
});
});
}