I did an import from SMF 2 and noticed that none of the signatures carried over. I looked through the impex code and found a bug in smf2\004.php
Find
Replace
Find
Code:
// If its not blank slash it and get it if($data['personal_text']) { $try->add_default_value('signature', $this->html_2_bb($data['signature'])); }
Code:
// If its not blank slash it and get it if($data['signature']) { $try->add_default_value('signature', $this->html_2_bb($data['signature'])); }
Comment