Okay, i'm not sure if there was a change in the setup of php calling or whatever, but I found an error and I managed to fix it on my own (horrah for me! i know nothing about php until this point

)
this is for the showthread template
instead of:
Code:
function openeditsigwindow(x,y,sessionhash,userid) {
window.open("moderator.php?action=editsig&s"+sessionhash+"&userid="+userid, "EditSig", "toolbar=no,scrollbars=yes,resizable=yes,width="+x+",height="+y);
}
it should be:
Code:
function openeditsigwindow(x,y,sessionhash,userid) {
window.open("moderator.php?s="+sessionhash+"&action=editsig&userid="+userid, "EditSig", "toolbar=no,scrollbars=yes,resizable=yes,width="+x+",height="+y);
}
note, i am using version 2.2.6, and like I said i'm not sure if they changed anything or whatnot lol O_O
Awesome hack sir *bows*