There Is At Least One New Reply In This Thread.....


Subject: 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!

Profile PM  
Subject: Re: There Is At Least One New Reply In This Thread.....
maybe

includes/functions_post.php

Subject: Re: There Is At Least One New Reply In This Thread.....
yes, as difus said its in functions_post.php arroung line 150 or similar

Code: [Download] [Hide] [Select]
// Check to see if there's a new post while the user is posting
global $_POST;
global $lang;
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);
}
}
}


cya

Subject: Re: There Is At Least One New Reply In This Thread.....
Thank you guys!!! You all rock as usual :-)

Profile PM  
Subject: Re: There Is At Least One New Reply In This Thread.....
Moved to Docs.


Page 1 of 1


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.087s (PHP: 21% SQL: 79%)
SQL queries: 10 - Debug Off - GZIP Enabled