Quote:
Originally posted by Me2Be
1] Can you send it so the PM is able to be seen on our message tracking?
|
Sure.. Find:
PHP Code:
$DB_site->query("INSERT INTO privatemessage (privatemessageid,userid,touserid,fromuserid,title,message,dateline,showsignature,iconid,messageread,folderid) VALUES (NULL,$bbuserinfo[userid],$bbuserinfo[userid],$greeter,'".addslashes(htmlspecialchars($title2))."','".addslashes($post_greeting_pm)."',".time().",1,'$log_iconid',0,0)");
And replace it as:
PHP Code:
$DB_site->query("INSERT INTO privatemessage (privatemessageid,userid,touserid,fromuserid,title,message,dateline,showsignature,iconid,messageread,folderid, receipt) VALUES (NULL,$bbuserinfo[userid],$bbuserinfo[userid],$greeter,'".addslashes(htmlspecialchars($title2))."','".addslashes($post_greeting_pm)."',".time().",1,'$log_iconid',0,0,1)");
Quote:
2] Can you modify it to create an ongoing thread for post accomplisments instead of a separate thread? (want to use it for my moderators instead of separate threads)
|
Find:
PHP Code:
$DB_site->query("INSERT INTO thread (threadid,title,lastpost,forumid,open,replycount,postusername,postuserid,lastposter,dateline,iconid,visible,attach) VALUES(NULL,'".addslashes(htmlspecialchars($title3))."','".time()."','$greetings_forum','1','0','".addslashes($greeter_name)."','".addslashes($greeter)."','".addslashes($greeter_name)."','".time()."','0','1','0')");
$log_threadid=$DB_site->insert_id();
Replace it AS:
PHP Code:
$log_threadid=XXXX;
$DB_site->query("UPDATE thread SET lastpost='".time()."',replycount=replycount+1,lastposter='".addslashes($greeter_name)."' WHERE threadid='$log_threadid'");
(Replace XXX with your thread id)
Dont forget to modify BOTH files (newthread.php & newreply.php)
That should work..
Enjoy.
Logician