That's quiet easy to solve Yarp™,

Open scripts/viewmessage.inc.php
Find:
Quote
// Track this for quick reply;
$last_post = $post_id;

$plist = "";

Paste under that lines:
Quote
$counter = 0;

2 lines ahead you see:
Quote
foreach($participants as $pvisit => $pdata) {

Paste under that line:
Quote
$counter = $counter + 1;

Find:
Quote
$postrow[$i]['replylink'] = make_ubb_url("ubb=mess_handler&replymess=1&Number=$message&id=$post_id", "", false);
$postrow[$i]['quotelink'] = make_ubb_url("ubb=mess_handler&replymess=1&Number=$message&q=1&id=$post_id", "", false);

Replace with:
Quote
if ($counter > 1) {
$postrow[$i]['replylink'] = make_ubb_url("ubb=mess_handler&replymess=1&Number=$message&id=$post_id", "", false);
$postrow[$i]['quotelink'] = make_ubb_url("ubb=mess_handler&replymess=1&Number=$message&q=1&id=$post_id", "", false);
}

Find:
Quote
$user['USER_TOTAL_PM'] = $total_unread;

Paste this under that line:
Quote
if ($counter <> 1) {
$qr = 1;
}
else
{
$qr = 0;
}

Find:
Quote
"quickreply" => 1,

Replace with:
Quote
"quickreply" => $qr,


See next post for turning off the quick reply function...

Rob

Last edited by Robje01; 03/12/2009 7:24 PM.

My place to be: http://www.freesat.nl