Thanks. I had completly rewritten everything above the actual script code so all I needed was the URL parse issue fixed.
All I did was add the:
Code:
$newpost['parseurl'] = '1';
$newpost['emailupdate'] = '9999';
if ($vbulletin->userinfo['signature'] != '')
{
$newpost['signature'] = '1';
}
else
{
$newpost['signature'] = '0';
}
twice under the "$newpost['title'] =" area and that fixed it.
It is now able to parse URLs and email addresses fine.
Thanks again Abe1!