|
Registered User Currently Offline
|
Posts: 1
Join Date: Sep 2005
|
Hristo,
Very nice work on the forum. I have installed it as a customer support forum at http://www.uuba.com/forum/
The only mods I made were to email new topics and posts to the admin. Code is shown below for any one else who wants to do the same.
In vforum.php and vtopic.php after the inserts to {$dbpref}posts
Code:
//=== PATCH 2005-10-01 email admin
require ('./code/mailer.php');
$email_subject = "$forumtitle - New Topic";
$email_body = "USER=$user_name (ID=$user_id)\n\n$message\n";
send_email($email_subject, $email_body, $adminemail, $adminemail, $adminemail);
//===
|