rsw686
Tue 19th May '09, 5:12pm
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
// 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']));
}