OK, how bad is this going to screw up other things??

This works for me so far, but I haven't tested very much.
Here's the old vbulletin tag wrapper for wysiwyg url's
PHP Code:
// ###################### Start parse_wysiwyg_anchor #######################
function parse_wysiwyg_anchor($aoptions, $text)
{
$href = parse_wysiwyg_tag_attribute('href=', $aoptions);
if (substr($href, 0, 7) == 'mailto:')
{
$tag = 'email';
$href = substr($href, 7);
}
else
{
$tag = 'url';
}
$tag = strtoupper($tag);
return "[$tag=\"$href\"]" . parse_wysiwyg_recurse('a', $text, 'parse_wysiwyg_anchor') . "[/$tag]";
}
Here's a proposed replacement:
PHP Code:
// ###################### Start parse_wysiwyg_anchor #######################
function parse_wysiwyg_anchor($aoptions, $text)
{
$href = parse_wysiwyg_tag_attribute('href=', $aoptions);
if (substr($href, 0, 7) == 'mailto:')
{
$tag = 'email';
$href = substr($href, 7);
}
else
{
$parsed = parse_url($href);
if (stripos($parsed['host'], getenv('HTTP_HOST')) !== false)
{
$tag = 'url';
}
else
{
$tag = '';
return $href;
}
}
$tag = strtoupper($tag);
return "[$tag=\"$href\"]" . parse_wysiwyg_recurse('a', $text, 'parse_wysiwyg_anchor') . "[/$tag]";
}
I only showed the whole thing so y'all don't have to research to answer question.
Naturally, editing instructions would be much shorter if the code looks good.
And funny thing about this edit is I didn't need to define the stripos so either it's using the one I defined in functions_newpost.php or else for some reason it's able to use class_bbcode.php WHEN THE TOP OF THE SCRIPT CLEARLY REQUIRES class_bbcode_alt.php (notice the _alt and that file doesn't define stripos) because obviously I'm not using php5.
:scratcheshead:
Edited to say ....
... this whole post pertains to functions_wysiwyg.php