mybb / merge-system

The MyBB Merge System allows for easy merging of an existing forum (be it MyBB or another forum software) into a MyBB 1.8.x forum.
Other
34 stars 33 forks source link

Research vBulletin moved thread #196

Open JN-Jones opened 8 years ago

JN-Jones commented 8 years ago

Source in the thread modules:

        $insert_data['closed'] = int_to_01($data['open']);

        if($insert_data['closed'] == 'no')
        {
            $insert_data['closed'] = '';
        }

        if($data['open'] == '10')
        {
            $insert_data['closed'] = 'moved|'.$this->get_import->tid($data['pollid']);
        }

As int_to_01 never returns no the first if is never used. While I can confirm that all threads where open has the value 10 have a pollid I'm not sure whether vb really uses the pollid column as moved thread id column which looks simply wrong...