Hey
Gardener:
In your instructions you have the following:
code:
Step 3
Open up the file showflat.php and find these lines (at ~876):
$postrow[$i]['notifylinkstart'] = "<a href="{$config['phpurl']}/notifymod.php?Cat=$Cat&Board=$Board&Number=$Number&page=$page&view=$view&sb=$sb&o=$o&vc=1&fpart=$fpart&what=showflat">";
$postrow[$i]['notifylinkstop'] = "</a>";
Add these lines AFTER:
$postrow[$i]['sendpmlinkstart'] = "<a href="{$config['phpurl']}/sendprivate.php?Cat=$Cat&User=$EUsername">";
$postrow[$i]['sendpmlinkstop'] = "</A>";
Assuming you wish to have the subject of the private message response be the same as a reply to the post, you should change the instructions to read as follows:
code:
Step 3
Open up the file showflat.php and find these lines (at ~876):
$postrow[$i]['notifylinkstart'] = "<a href="{$config['phpurl']}/notifymod.php?Cat=$Cat&Board=$Board&Number=$Number&page=$page&view=$view&sb=$sb&o=$o&vc=1&fpart=$fpart&what=showflat">";
$postrow[$i]['notifylinkstop'] = "</a>";
Add these lines AFTER:
$postrow[$i]['sendpmlinkstart'] = "<a href="{$config['phpurl']}/sendprivate.php?Cat=$Cat&User=$EUsername&Subject=Re: $tsubject">";
$postrow[$i]['sendpmlinkstop'] = "</A>";
Basically I just added the &Subject=Re: $tsubject to the first part so it will pass the subject through. Otherwise, good hack! I know it will be appreciated by my members.