Log in

View Full Version : Merge thread complication.


Davey
06-08-2003, 12:16 AM
Why is thread merging so complicated?
Why can't you just enter the other thread's ID and they merge?
Instead you have to get the whole URL for the thread you want to merge.
Kinda sucks.

Dave.

filburt1
06-08-2003, 01:28 AM
I'm guessing all it does anyway is grab the threadid from the URL. It's easier for most people to copy/paste than to type in a threadid (or copy a specific part of the URL)...

Davey
06-08-2003, 03:14 AM
I guess but IMO it's pretty silly.
I would find using simply the threadid much more simpler.

Dave.

Nitesh
10-02-2003, 02:17 PM
Hi, is there a hack or something which makes merging threads easier?

Logician
10-03-2003, 09:58 AM
Why is thread merging so complicated?
Why can't you just enter the other thread's ID and they merge?
Instead you have to get the whole URL for the thread you want to merge.
Kinda sucks.

Dave.
edit postings.php, find:

$getthreadid=intval(substr($mergethreadurl,strpos( $mergethreadurl,"threadid=")+9));

replace it as:

if (strlen($mergethreadurl)<10)
{
$getthreadid=intval($mergethreadurl);
}
else
{
$getthreadid=intval(substr($mergethreadurl,strpos( $mergethreadurl,"threadid=")+9));
}


Now that field accepts both URL and thread id only. ;)