Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post
Post There Is At Least One New Reply In This Thread 
 
If you want to delete the warning message "There is at least one new reply in this thread" when someone post while you were posting, make this changes

OPEN

includes/functions_post

FIND

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);
            }
        }
    }


REPLACE WITH

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);
            }
        }
    }
    */

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
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


  

 

  cron