includes/bbcode.php line 625

Code:
    // matches an email@domain type address at the start of a line, or after a space.
    // Note: Only the followed chars are valid; alphanums, "-", "_" and or ".".
    $ret = preg_replace&#40;"#&#40;&#91;\n &#93;&#41;&#40;&#91;a-z0-9\-_.&#93;+?&#41;@&#40;&#91;\w\-&#93;+\.&#40;&#91;\w\-\.&#93;+\.&#41;*&#91;\w&#93;+&#41;#i", "\\1<a href=\"mailto&#58;\\2@\\3\">\\2@\\3</a>", $ret&#41;;
new line here
Code:
    // cut link text to hostname
    $ret = preg_replace&#40; "#&#40;<a hr.+ank\">&#41;&#91;http|ftp&#93;+&#91;s&#93;?&#58;//&#40;&#91;a-z0-9\.&#93;+&#41;/.+#i", '\1\2</a>', $ret &#41;;
Code:
    // Remove our padding..
    $ret = substr&#40;$ret, 1&#41;;

    return&#40;$ret&#41;;
&#125;
isn't very pretty or robust but it retroactively fixes the width problem.