PHP Code:
//############################################################################
//# START MULTI QUOTE #
//############################################################################
if(isset($_COOKIE[COOKIE_PREFIX . 'mq']))
{
$pids = $_COOKIE[COOKIE_PREFIX . 'mq'];
$pids = urldecode($pids);
if(!empty($pids) && preg_match("/^[0-9,]+$/", $pids))
{
if($_REQUEST['noquote'])
$mq_postid = '';
elseif(!empty($postinfo['postid']))
$mq_postid = "AND postid <> {$postinfo['postid']}";
else
$mq_postid = '';
$q = $DB_site->query("SELECT username, pagetext FROM ".TABLE_PREFIX."post WHERE postid IN($pids) $mq_postid ORDER BY postid ASC LIMIT 20");
while($row = $DB_site->fetch_array($q))
{
$originalposter = fetch_quote_username($row['username']);
$pagetext = htmlspecialchars_uni($row['pagetext']);
$pagetext = trim(strip_quotes($pagetext));
eval('$newpost[\'message\'] .= "' . fetch_template('newpost_quote', 1, 0) . '\n";');
}
}
setcookie(COOKIE_PREFIX . 'mq', '', time() - 3600, $vboptions['cookiepath'], $vboptions['cookiedomain']);
}
//############################################################################
//# END MULTI QUOTE #
//############################################################################
That should fix the last post not being included. I got screwed up because in RC2 (mabe RC1?) the template changed and the reply button actually replies to the _last_ post as to the first post. So I was having trouble reproducing the bug
I'll update the main file with this code. The "go advanced" in the quick reply still doesn't show the quotes, though I'm working on it