Wikipedia:WikiProject User scripts/Scripts/warn.js

This is an old revision of this page, as edited by Miketm (talk | contribs) at 08:39, 3 September 2006. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

/*

*/
function warn()
{
    var txt = document.editform.wpTextbox1;
var prompter = prompt("Which warning do you wish to issue?");
var msgtext = "{{subst:" + prompter + "}}~~~~";
var summary = "{{" + prompter + "}}";
    document.editform.wpSummary.value = summary;
    if(txt.value.length > 0) txt.value += '\n';
    txt.value += msgtext;
    document.editform.submit();
}
/*

*/