For those interested in having the Mod/Admin who moved the thread being the originator of the PM instead of Member #1 (or a set Member you choose) here's the change:
In postings.php Change This:
Code:
$DB_site->query("INSERT INTO privatemessage (privatemessageid,userid,touserid,
fromuserid,title,message,dateline,showsignature,iconid,messageread,folderid,receipt)
VALUES (NULL,$firstpostinfo[userid],$firstpostinfo[userid],1,'Your post has been
moved.','".addslashes($movemessage)."',".time().",0,9,0,0,0)");
To This:
Code:
$DB_site->query("INSERT INTO privatemessage (privatemessageid,userid,touserid,
fromuserid,title,message,dateline,showsignature,iconid,messageread,folderid,receipt)
VALUES (NULL,$firstpostinfo[userid],$firstpostinfo[userid],$bbuserinfo[userid],'Your post has
been moved.','".addslashes($movemessage)."',".time().",0,9,0,0,0)");
You just need to change the 1 in the original query for the fromuserid to the value for the userid in bbuserinfo. Make sure you do this all in one line, the added lines here are to keep everything from scrolling.
Hope this helps someone. Thanks for the great hack!