
There Is At Least One New Reply In This Thread.....
There was a section in one of the files that I could comment out to make sure that the post cehck was not done to prevent "There is at least one new reply in this thread.." message from coming up when you try to submit a response. Here is the actual coding to comment out:
Quote:
/*
if(!empty($_POST['post_time']) && ($mode == 'reply' || $mode == 'quote'))
{
global $topic_id;
$last_post_time = intval($_POST['post_time']);
if(isset($topic_id) && $last_post_time)
{
$sql = "SELECT post_time FROM " . POSTS_TABLE . " WHERE topic_id = $topic_id ORDER BY post_time DESC LIMIT 0, 1";
global $db;
if(($result = $db->sql_query($sql)) !== false)
{
if( $row = $db->sql_fetchrow($result) )
{
$last_post_time2 = $row['post_time'];
if($last_post_time2 > $last_post_time)
{
$error_msg .= (empty($error_msg) ? '' : '<br />') . $lang['Warn_new_post'];
}
}
$db->sql_freeresult($result);
}
}
}
*/
I just can't remember which file it was. Anyone know??
Thanks in advance!