Tue 19th May '09 5:12pm
|
|
|
|
Signatures Missing When Importing From SMF2
I found a bug in the SMF2 module of ImpEx. I have documented it in the below thread
http://www.vbulletin.com/forum/showthread.php?p=1737381
For reference here the bug is in smf2\004.php
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']));
}
Replace
Code:
// If its not blank slash it and get it
if($data['signature'])
{
$try->add_default_value('signature', $this->html_2_bb($data['signature']));
}
|