Quote:
Originally Posted by Gio Takahashi
I installed it and it works.
I have a question, however.
When someone double posts within an hour, how would I make "DOUBLE POST" appear above the second post IE:
Bob:
Hello
Double Post
How are you
|
It has to do with this code:
PHP Code:
// Update DB
$DB_site->query("
UPDATE " . TABLE_PREFIX . "post
SET pagetext = '" . addslashes($doublepost['pagetext'] . "\n\n" . $post['message']) . "',
attach = attach + $totalattachments
WHERE postid = $doublepost[postid]
");
You could simply modify what it sets the pagetext field to, i.e.
Code:
SET pagetext = '" . addslashes($doublepost['pagetext'] . "\n\n" . $post['message']) . "',
becomes
Code:
SET pagetext = '" . addslashes($doublepost['pagetext'] . "\n\n<b>Double Post</b>\n\n" . $post['message']) . "',
I am not sure if that would work exactly, but at 1:39am I am entitled to mistakes
Satan