As I said, the template update occurs in the "POST-HIST: modify postbits" plugin.
You could post the 2 templates, postbit and postbit_legacy templates and It should be possible to create new search strings. I haven't 3.6.0 on my server.
The real problem is that vbulletin has not put in markers or hooks in the templates.
SnickersTK, I am not sure what is causing your error.
The code is:
PHP Code:
if( ( $_REQUEST['prev_postid'] == $post['postid'] ) && ( $_REQUEST['prev_editnum'] < $post['numedits'] ) )
{
$post['pagetext'] = 'matched change post';
$query = "SELECT message FROM " . TABLE_PREFIX . "post_edits WHERE
(postid = " . $post['postid'] . "
AND editnum = " . $_REQUEST['prev_editnum'] . ")";
$post_temp = $db->query_first( $query );
$post['pagetext'] = $post_temp['message'];
$post['pagetext_html'] = "";
$post_cachable = 0;
}
From your screen shot, the only $_REQUEST value set is the thread value t=2069. This means that the if at the top should not return true.
You could maybe use isset outside the if statement above, e.g.
if( isset( $_REQUEST['prev_postid'] ) && isset( $_REQUEST['prev_editnum'] ) )
{
<the above code>
}