@TTG
You obviously have already modified vbulletin_stdedit.js....yours is not the original code...so either upload the original vbulletin_stdedit.js or use this:
Code:
function validatePost(tform, subjectVal, minLength, maxLength, categoryVal)
{
if (typeof categoryVal == "undefined")
{
var categoryVal = 0;
}
postOK = validatemessage(tform.message.value, subjectVal, minLength, maxLength, false, tform, categoryVal);
if ((postOK == true) & is_ie) {
Copied = tform.message.createTextRange();
Copied.execCommand("Copy");
}
return postOK;
}