rsw686
Sun 17th May '09, 2:45am
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
// 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
// If its not blank slash it and get it
if($data['signature'])
{
$try->add_default_value('signature', $this->html_2_bb($data['signature']));
}
Find
// 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
// If its not blank slash it and get it
if($data['signature'])
{
$try->add_default_value('signature', $this->html_2_bb($data['signature']));
}