Reply To: Allow certain users to Edit

Forums Classic DFFS Allow certain users to Edit Reply To: Allow certain users to Edit

#12920
Alexander Bautz
Keymaster

To compare with these three fields you need to set up the four rules you find attached.

When this is done, you must add this to the custom js:

function goBackToWhereYouCameFrom(){
    spjs.dffs.dlgBox("You shall not pass!!!!",false,function(){
        window.history.back();
    });
}

If you like to use the default alert box you can change it like this:

function goBackToWhereYouCameFrom(){
    alert("You shall not pass!!!!");
    window.history.back();
}

Let me know how this works out.

Alexander