PDA

View Full Version : BEing able to get 1post for every private message


DjSao
03-21-2001, 12:56 PM
I want the private messages counted as 1 on the post count, anybody knows how to do that?

03-21-2001, 08:04 PM
In private.php, find
$DB_site->query("INSERT INTO privatemessage (privatemessageid,userid,touserid,fromuserid,title ,message,dateline,showsignature,iconid,messageread ,folderid) VALUES (NULL,$touserinfo[userid],$touserinfo[userid],$bbuserinfo[userid],'".addslashes(htmlspecialchars($title))."','".addslashes($message)."',".time().",'$signature','$iconid',0,0)");
Directly below it add
$DB_site->query("UPDATE user SET posts=posts+1");

Save and upload to your site.