vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Prevent Doubleposting (https://vborg.vbsupport.ru/showthread.php?t=96602)

eoc_Jason 11-08-2007 04:45 PM

Quote:

i would love it if when someone double posts and it is merged it would time stamp the merge
The problem with that is whatever time would only be relevant to a particular time zone. So people in other TZ's would only be confused. You might want to consider that. Some people suggested adding the time difference so it would be like (added 1hr later...)

Paul M 11-08-2007 04:59 PM

The Timezone problem can be got around (like here for example).

eoc_Jason 11-09-2007 03:53 PM

The only way though would be to NOT cache the posts though. Because otherwise whoever viewed the post it would be parsed & cached for their time zone.

About the only way I can see doing this and leaving caching on would be to make some sort of javascript?

Paul M 11-09-2007 06:20 PM

The system we use works whether posts are cached or not, and has no reliance on Javascript.

too_cool_3 11-12-2007 04:07 AM

Quote:

Originally Posted by Kalina (Post 1376999)
I achieved what you're looking for by editing the "Main Doublepost Prevent Engine" plugin. You can replace all the code in it with the following.

PHP Code:

// ########### Xenon's prevent doublepost modification #########

$vbulletin->GPC['xen_isdoublepost'] = false;

// parse custom conditions
$custcond true;
if (
trim($vbulletin->options['xen_dp_custcond']) != '')
{
    eval(
'$custcond = ((' $vbulletin->options['xen_dp_custcond'] . ') ? true : false);');
}


// at first check if there is at least the possibility to be a doublepost
if ($custcond AND $type != 'thread'
    
AND $dp_threadinfo['lastpost'] > TIMENOW $vbulletin->options['xen_dp_timespan'] * 60
    
AND $dp_threadinfo['lastposter'] == $vbulletin->userinfo['username']
    AND 
$dataman->fetch_field('attach') == 0)
{
    
// we are here, so we may have a doublepost -> do more exact checkings
    
$doublepost $vbulletin->db->query_first("
        SELECT post.*
        FROM " 
TABLE_PREFIX "post AS post
        LEFT JOIN " 
TABLE_PREFIX "deletionlog AS deletionlog ON(deletionlog.primaryid = post.postid AND type = 'post')
        WHERE post.threadid = 
$threadinfo[threadid]
            AND post.dateline > " 
. (TIMENOW $vbulletin->options['xen_dp_timespan'] * 60) . "
            AND post.visible = 1 AND deletionlog.primaryid IS NULL
            AND post.postid <> 
$post[postid]
        ORDER BY post.dateline DESC
        LIMIT 1
    "
);

    if (
$doublepost['userid'] == $vbulletin->userinfo['userid'] AND $doublepost['attach'] == 0)
    {
        
// we truely have a doublepost, now check if the merged post still fits the rules!
        
$dpdataman =& datamanager_init('Post'$vbulletinERRTYPE_ARRAY'threadpost');
        
$dpdataman->set_existing($doublepost);
        
$doublepost['message'] = $doublepost['pagetext'] . "\n\n[SIZE=\"1\"][COLOR=\"Silver\"]" $vbulletin->userinfo['username'] . ' added ' intval((TIMENOW $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW $doublepost['dateline']) % 60). ' Seconds later...' $vbulletin->options['xen_dp_spacer'] . "[/color][/size]\n\n" $post['message'];

        
// set info
        
$dpdataman->set_info('preview'$post['preview']);
        
$dpdataman->set_info('parseurl'$post['parseurl']);
        
$dpdataman->set_info('posthash'$post['posthash']);
        
$dpdataman->set_info('forum'$foruminfo);
        
$dpdataman->set_info('thread'$dp_threadinfo);

        
// set options
        
$dpdataman->setr('showsignature'$post['signature']);
        
$dpdataman->setr('allowsmilie'$post['enablesmilies']);

        
// set data
        
$dpdataman->setr('pagetext'$doublepost['message']);
        
$dpdataman->setr('iconid'$post['iconid']);

        
$dpdataman->pre_save();
        if (!
$dpdataman->errors)
        {
            
// merged post is ok, so actually do the merging by editing old post
            
$vbulletin->GPC['xen_isdoublepost'] = true;

            if (
$vbulletin->options['xen_dp_bumpthread'])
            {
                
// bump thread, so change the post's dateline
                
$doublepost['dateline'] = TIMENOW;
                
$dpdataman->setr('dateline'$doublepost['dateline']);
            }
            
$dpdataman->save();

            
// as we have edited an old post, we can now delete the new created post
            
$postman =& datamanager_init('Post'$vbulletinERRTYPE_SILENT'threadpost');
            
$postman->set_existing($post);
            
$postman->delete($foruminfo['countposts'], $threadinfo['threadid'], $removaltype true, array('userid' => $vbulletin->userinfo['userid'], 'username' => $vbulletin->userinfo['username'], 'reason' => $vbulletin->options['xen_dp_editedby'], 'keepattachments' => false), false);
            unset(
$postman);

            
$doublepost['oldmessage'] = $post['message'];
            
$post $doublepost;
            
$id $post['postid'];

            
//now add edited by message
            
if ($vbulletin->options['xen_dp_editedby'] != '')
            {
                
$vbulletin->db->query_write("
                    REPLACE INTO " 
TABLE_PREFIX "editlog (postid, userid, username, dateline, reason)
                    VALUES (
$post[postid], " $vbulletin->userinfo['userid'] . ", '" addslashes($vbulletin->userinfo['username']) . "', " TIMENOW ", '" addslashes($vbulletin->options['xen_dp_editedby']) . "')
                "
);
            }

            
// last step update counters
            
build_thread_counters($post['threadid']);
            
build_forum_counters($foruminfo['forumid']);
        }
    }



Thank you SO much Kalina for solving my problem. Just tried your method and it works perfect!

My double posts now show up as:

MarcGSR added 1 Minutes and 2 Seconds later...

But still no one has answer if there is a way to time stamp them like this:

--------------- Added 17 Oct 2007 at 7:17pm ---------------

???

eoc_Jason 11-12-2007 12:48 PM

Quote:

Originally Posted by Paul M (Post 1379207)
The system we use works whether posts are cached or not, and has no reliance on Javascript.

Could you please elaborate, or better yet post some code? :)

Mafialife Chris 11-20-2007 03:31 AM

Can someone give me a step by step in dummies terms to make this happen on my forum. This includes any actions i would need to do with my FTP and files on the server. I just do not know what to do, sorry. help?

eoc_Jason 11-20-2007 12:25 PM

Install the product via the XML upload. Configure settings in your new additional admincp options. That's it...

coolgus 11-21-2007 10:34 AM

any fix for the quick reply refresh problem ?

Jikdor 11-24-2007 09:25 PM

*installed*

Black Tiger 11-25-2007 08:20 PM

Question: Ik would like to have the "xxx added xx minutes and xx seconds later" in bold. Where (and how) is the best place to adjust this so it will be kept in bold after for example a future update of this mod? If possible ofcourse.

Squiddy 11-30-2007 08:09 PM

Installed on 3.6.8 and it works beautifully!

Kalina 12-01-2007 12:40 AM

Quote:

Originally Posted by Black Tiger (Post 1389316)
Question: Ik would like to have the "xxx added xx minutes and xx seconds later" in bold. Where (and how) is the best place to adjust this so it will be kept in bold after for example a future update of this mod? If possible ofcourse.

I posted the code to change that text, the code is quote above and it's also on the previous page, you can simply add the bold bbcode tags to what I have there.

Black Tiger 12-01-2007 03:27 PM

Thank you Kalina but unfortunately I'm not that good in php. Maybe you can help me a little bit further?
I presume you mean this part (I took the original one)
Code:

                $dpdataman->set_existing($doublepost);
                $doublepost['message'] = $doublepost['pagetext'] . "\n\n" . $vbulletin->userinfo['username'] . ' added ' . intval((TIMENOW - $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW - $doublepost['dateline']) % 60). ' Seconds later...' . $vbulletin->options['xen_dp_spacer'] . "\n\n" . $post['message'];

What or where should I change it? Should I just change it into this?
Code:

[ b]$dpdataman->set_existing($doublepost);
                $doublepost['message'] = $doublepost['pagetext'] . "\n\n" . $vbulletin->userinfo['username'] . ' added ' . intval((TIMENOW - $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW - $doublepost['dateline']) % 60). ' Seconds later...' . $vbulletin->options['xen_dp_spacer'] . "\n\n" . $post['message'][ /b];

Or should it be done another way?

Edit: I just see that the code tag doesnt prevent the code from being bold. I put the [ b] tag in front of $dpdataman and the [ /b] tag before the last ; and the end of the line. Ofcourse if this is correct I have to remove the whitespace before the b and the /b.

Kalina 12-02-2007 02:58 AM

BlackTiger, in my code posted above, you'd change this line:
PHP Code:

        $doublepost['message'] = $doublepost['pagetext'] . "\n\n[SIZE=\"1\"][COLOR=\"Silver\"]" $vbulletin->userinfo['username'] . ' added ' intval((TIMENOW $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW $doublepost['dateline']) % 60). ' Seconds later...' $vbulletin->options['xen_dp_spacer'] . "[/color][/size]\n\n" $post['message']; 

To

PHP Code:

        $doublepost['message'] = $doublepost['pagetext'] . "\n\n[SIZE=\"1\"][COLOR=\"Silver\"][b]" $vbulletin->userinfo['username'] . ' added ' intval((TIMENOW $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW $doublepost['dateline']) % 60). ' Seconds later...' $vbulletin->options['xen_dp_spacer'] . "[/b][/color][/size]\n\n" $post['message']; 

All I did was add the bold bbcode tags to my existing code from above. Hope that helps you. :)

Black Tiger 12-02-2007 01:10 PM

Oke thanks I'm going to have a try, but I did not find the "[COLOR=\"Silver\"]" in the original plugin which I would like to keep as original as possible. But I will have a try then, thanks!

Black Tiger 12-02-2007 01:31 PM

Sorry, I tried but then my quickreply option will give errors. I don't have a [color= thing in my plugin, it looks exactly like I posted in my reply above.

I did it like this:
PHP Code:

$dpdataman->set_existing($doublepost);
        
$doublepost['message'] = $doublepost['pagetext'] . "\n\n" [b]" . $vbulletin->userinfo['username'] . ' added ' . intval((TIMENOW - $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW - $doublepost['dateline']) % 60). ' Seconds later...' . $vbulletin->options['xen_dp_spacer'] . "[/b"\n\n" $post['message']; 

So this is not the right way I'm doing something wrong but I don't know what.
I also tried at the same places without the " signs before or after the bold tags, but same problem occurs.

Kalina 12-03-2007 03:56 PM

Quote:

Originally Posted by Black Tiger (Post 1393509)
Sorry, I tried but then my quickreply option will give errors. I don't have a [color= thing in my plugin, it looks exactly like I posted in my reply above.

I did it like this:
PHP Code:

$dpdataman->set_existing($doublepost);
        
$doublepost['message'] = $doublepost['pagetext'] . "\n\n" [b]" . $vbulletin->userinfo['username'] . ' added ' . intval((TIMENOW - $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW - $doublepost['dateline']) % 60). ' Seconds later...' . $vbulletin->options['xen_dp_spacer'] . "[/b"\n\n" $post['message']; 

So this is not the right way I'm doing something wrong but I don't know what.
I also tried at the same places without the " signs before or after the bold tags, but same problem occurs.

There should not be a quote between the \n\n and [*b*] on neither side. I'll have to post the full code for you in a bit, I can't post a little example, it's getting parsed.

Kadence 12-03-2007 04:05 PM

This may have been posted but I couldn't find it. How do you make moderators and admins immune to this?

Here's my current main engine code:
PHP Code:

// ########### Xenon's prevent doublepost modification #########

$vbulletin->GPC['xen_isdoublepost'] = false;

// parse custom conditions
$custcond true;
if (
trim($vbulletin->options['xen_dp_custcond']) != '')
{
    eval(
'$custcond = ((' $vbulletin->options['xen_dp_custcond'] . ') ? true : false);');
}


// at first check if there is at least the possibility to be a doublepost
if ($custcond AND $type != 'thread'
    
AND $dp_threadinfo['lastpost'] > TIMENOW $vbulletin->options['xen_dp_timespan'] * 60
    
AND $dp_threadinfo['lastposter'] == $vbulletin->userinfo['username']
    AND 
$dataman->fetch_field('attach') == 0)
{
    
// we are here, so we may have a doublepost -> do more exact checkings
    
$doublepost $vbulletin->db->query_first("
        SELECT post.*
        FROM " 
TABLE_PREFIX "post AS post
        LEFT JOIN " 
TABLE_PREFIX "deletionlog AS deletionlog ON(deletionlog.primaryid = post.postid AND type = 'post')
        WHERE post.threadid = 
$threadinfo[threadid]
            AND post.dateline > " 
. (TIMENOW $vbulletin->options['xen_dp_timespan'] * 60) . "
            AND post.visible = 1 AND deletionlog.primaryid IS NULL
            AND post.postid <> 
$post[postid]
        ORDER BY post.dateline DESC
        LIMIT 1
    "
);

    if (
$doublepost['userid'] == $vbulletin->userinfo['userid'] AND $doublepost['attach'] == 0)
    {
        
// we truely have a doublepost, now check if the merged post still fits the rules!
        
$dpdataman =& datamanager_init('Post'$vbulletinERRTYPE_ARRAY'threadpost');
        
$dpdataman->set_existing($doublepost);
        
$doublepost['message'] = $doublepost['pagetext'] . "\n" $vbulletin->options['xen_dp_spacer'] . "\n" $post['message'];

        
// set info
        
$dpdataman->set_info('preview'$post['preview']);
        
$dpdataman->set_info('parseurl'$post['parseurl']);
        
$dpdataman->set_info('posthash'$post['posthash']);
        
$dpdataman->set_info('forum'$foruminfo);
        
$dpdataman->set_info('thread'$dp_threadinfo);

        
// set options
        
$dpdataman->setr('showsignature'$post['signature']);
        
$dpdataman->setr('allowsmilie'$post['enablesmilies']);

        
// set data
        
$dpdataman->setr('pagetext'$doublepost['message']);
        
$dpdataman->setr('iconid'$post['iconid']);

        
$dpdataman->pre_save();
        if (!
$dpdataman->errors)
        {
            
// merged post is ok, so actually do the merging by editing old post
            
$vbulletin->GPC['xen_isdoublepost'] = true;

            if (
$vbulletin->options['xen_dp_bumpthread'])
            {
                
// bump thread, so change the post's dateline
                
$doublepost['dateline'] = TIMENOW;
                
$dpdataman->setr('dateline'$doublepost['dateline']);
            }
            
$dpdataman->save();

            
// as we have edited an old post, we can now delete the new created post
            
$postman =& datamanager_init('Post'$vbulletinERRTYPE_SILENT'threadpost');
            
$postman->set_existing($post);
            
$postman->delete($foruminfo['countposts'], $threadinfo['threadid'], $removaltype true, array('userid' => $vbulletin->userinfo['userid'], 'username' => $vbulletin->userinfo['username'], 'reason' => $vbulletin->options['xen_dp_editedby'], 'keepattachments' => false), false);
            unset(
$postman);

            
$doublepost['oldmessage'] = $post['message'];
            
$post $doublepost;
            
$id $post['postid'];

            
//now add edited by message
            
if ($vbulletin->options['xen_dp_editedby'] != '')
            {
                
$vbulletin->db->query_write("
                    REPLACE INTO " 
TABLE_PREFIX "editlog (postid, userid, username, dateline, reason)
                    VALUES (
$post[postid], " $vbulletin->userinfo['userid'] . ", '" addslashes($vbulletin->userinfo['username']) . "', " TIMENOW ", '" addslashes($vbulletin->options['xen_dp_editedby']) . "')
                "
);
            }

            
// last step update counters
            
build_thread_counters($post['threadid']);
            
build_forum_counters($foruminfo['forumid']);
        }
    }



Kalina 12-03-2007 04:13 PM

BlackTiger, here's the code to make it bold, if you don't want the size and silver color, simply remove those tags, don't add anything.

PHP Code:

// ########### Xenon's prevent doublepost modification #########

$vbulletin->GPC['xen_isdoublepost'] = false;

// parse custom conditions
$custcond true;
if (
trim($vbulletin->options['xen_dp_custcond']) != '')
{
    eval(
'$custcond = ((' $vbulletin->options['xen_dp_custcond'] . ') ? true : false);');
}


// at first check if there is at least the possibility to be a doublepost
if ($custcond AND $type != 'thread'
    
AND $dp_threadinfo['lastpost'] > TIMENOW $vbulletin->options['xen_dp_timespan'] * 60
    
AND $dp_threadinfo['lastposter'] == $vbulletin->userinfo['username']
    AND 
$dataman->fetch_field('attach') == 0)
{
    
// we are here, so we may have a doublepost -> do more exact checkings
    
$doublepost $vbulletin->db->query_first("
        SELECT post.*
        FROM " 
TABLE_PREFIX "post AS post
        LEFT JOIN " 
TABLE_PREFIX "deletionlog AS deletionlog ON(deletionlog.primaryid = post.postid AND type = 'post')
        WHERE post.threadid = 
$threadinfo[threadid]
            AND post.dateline > " 
. (TIMENOW $vbulletin->options['xen_dp_timespan'] * 60) . "
            AND post.visible = 1 AND deletionlog.primaryid IS NULL
            AND post.postid <> 
$post[postid]
        ORDER BY post.dateline DESC
        LIMIT 1
    "
);

    if (
$doublepost['userid'] == $vbulletin->userinfo['userid'] AND $doublepost['attach'] == 0)
    {
        
// we truely have a doublepost, now check if the merged post still fits the rules!
        
$dpdataman =& datamanager_init('Post'$vbulletinERRTYPE_ARRAY'threadpost');
        
$dpdataman->set_existing($doublepost);
        
$doublepost['message'] = $doublepost['pagetext'] . "\n\n[SIZE=\"1\"][COLOR=\"Silver\"][b]" $vbulletin->userinfo['username'] . ' added ' intval((TIMENOW $doublepost['dateline'])/60) . ' Minutes and ' . ((TIMENOW $doublepost['dateline']) % 60). ' Seconds later...' $vbulletin->options['xen_dp_spacer'] . "[/b][/COLOR][/SIZE]\n\n" $post['message'];

        
// set info
        
$dpdataman->set_info('preview'$post['preview']);
        
$dpdataman->set_info('parseurl'$post['parseurl']);
        
$dpdataman->set_info('posthash'$post['posthash']);
        
$dpdataman->set_info('forum'$foruminfo);
        
$dpdataman->set_info('thread'$dp_threadinfo);

        
// set options
        
$dpdataman->setr('showsignature'$post['signature']);
        
$dpdataman->setr('allowsmilie'$post['enablesmilies']);

        
// set data
        
$dpdataman->setr('pagetext'$doublepost['message']);
        
$dpdataman->setr('iconid'$post['iconid']);

        
$dpdataman->pre_save();
        if (!
$dpdataman->errors)
        {
            
// merged post is ok, so actually do the merging by editing old post
            
$vbulletin->GPC['xen_isdoublepost'] = true;

            if (
$vbulletin->options['xen_dp_bumpthread'])
            {
                
// bump thread, so change the post's dateline
                
$doublepost['dateline'] = TIMENOW;
                
$dpdataman->setr('dateline'$doublepost['dateline']);
            }
            
$dpdataman->save();

            
// as we have edited an old post, we can now delete the new created post
            
$postman =& datamanager_init('Post'$vbulletinERRTYPE_SILENT'threadpost');
            
$postman->set_existing($post);
            
$postman->delete($foruminfo['countposts'], $threadinfo['threadid'], $removaltype true, array('userid' => $vbulletin->userinfo['userid'], 'username' => $vbulletin->userinfo['username'], 'reason' => $vbulletin->options['xen_dp_editedby'], 'keepattachments' => false), false);
            unset(
$postman);

            
$doublepost['oldmessage'] = $post['message'];
            
$post $doublepost;
            
$id $post['postid'];

            
//now add edited by message
            
if ($vbulletin->options['xen_dp_editedby'] != '')
            {
                
$vbulletin->db->query_write("
                    REPLACE INTO " 
TABLE_PREFIX "editlog (postid, userid, username, dateline, reason)
                    VALUES (
$post[postid], " $vbulletin->userinfo['userid'] . ", '" addslashes($vbulletin->userinfo['username']) . "', " TIMENOW ", '" addslashes($vbulletin->options['xen_dp_editedby']) . "')
                "
);
            }

            
// last step update counters
            
build_thread_counters($post['threadid']);
            
build_forum_counters($foruminfo['forumid']);
        }
    }



Black Tiger 12-03-2007 08:47 PM

@Kalina
Thanks, I put it now like this as in your example:
"\n\n [ b]"
And at the end also as in your example.
And this seems to work, no errors anymore.
Can't post it here because it gets parsed too. But it seemd to have done the trick.

Many thanks for the explanation!

Artes_Marciales 12-08-2007 12:38 PM

Thanks! :)

Keyser S?ze 12-13-2007 11:04 AM

these things may have been posted, but wouldnt it be nice a product update?

anyways, some useful things i think -

ability to set a amount of time before thread is bumped with merged double post

a timestamp on the double post lke "added 11:47 am 12/25/2007"

nothing4me 12-23-2007 06:31 PM

Works great on 3.6.8 :)
(Enable it in the product manager as it is disabled by default!)

ViViD 12-27-2007 06:37 AM

Hello ,
How can I limit this hack to certain user IDs or 'additional' Usergroups ?

Qamdad 01-02-2008 09:43 PM

Please can you edite it to work with 3.6.8 beacuse I try to edite by there is some error massege occure or it dose no work at all so can you edite it to looks like vb.org

Qamdad 01-02-2008 09:43 PM

I mean this one silver with date only like what you see above

MiahBeSmokin420 01-03-2008 12:16 AM

why on 3.6.7 its works like it will merge the posts

but

it will still leave the reply there to

so accually its not merging them its merging one of them but still leaving a copy of the merged post under the merged post as if it was a regular reply

Keyser S?ze 01-03-2008 09:41 AM

when i was using 367 it did not do that, im using 368 now and this mod works fine

check and ensure u got it installed properly

awdawd 01-06-2008 08:32 AM

no work Doublepost + vB Lightbulbs

Alfa1 01-12-2008 04:01 AM

Does this work on vb 3.7?

Black Tiger 01-17-2008 10:19 PM

Suggestion: Change the way time is displayed depending on the amount of time which is passed when a users writes his second reply after the initial post/reply.
I mean the following:
I've got my limit on 20 hours, so if a user writes a reply after some 14 hours and minutes it will be displayed like this
testuser added 888 Minutes and 26 Seconds later...

Now it would be nice to let only be shown minutes and seconds before an hour is over. So it would show the messages as followd after for example 63 minutes:
testuser added 1 Hour and 3 Minutes later...

Or for whoever likes it:
testuser added 1 Hour, 3 Minutes and 12 seconds later...

I guess this would not be difficult to make bye a IF/THEN statement in the code.
IF time >60... etc.. Ik wouldn't know exactly I'm not a coder.

Is there a way to implement this in a next version or if not, a way I can adjust the code myself to change it like this?
I have seen it with "hours" and "minutes" on some forum, just can't remember which forum.

redfox2010 01-19-2008 11:38 AM

installed.

TPOCJames 01-21-2008 01:36 PM

Works perfectly in 3.7.

Boofo 02-01-2008 07:34 AM

Of course it does. The Master wrote it. ;)

haytham 02-05-2008 08:06 PM

not working for me on 3.6.8 though....posters keep doubling and nothing happens.

Boofo 02-05-2008 08:07 PM

That's strange as this works great in 3.7.0 beta 4.

haytham 02-05-2008 08:53 PM

Sorrrrrrrrrrry. My bad. The product was disabled by default. I enabled it and now it's working. Just 1 thing though. The message that will appear to the members..can't I make it another colour..red for ex. I tried this:
<Font Color = "Red">message</Font> but it didn't work.

Boofo 02-05-2008 09:20 PM

There are a couple of posts in this thread that tell you how to change the color and even give you some code to do it. Don't ask me which posts as I spent the good part of the night I installed this carefully going over the thread for any problems and fixes. I didn't save any links to the post with the info, sorry. ;)

Puntoboy 02-09-2008 07:14 PM

Not sure if this has been answered yet, but is there any way to prevent this merging posts in certain forums?


All times are GMT. The time now is 08:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02958 seconds
  • Memory Usage 2,041KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (7)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete