well, here is the whole fuction thingy with that in it:
Code:
function checkurl($url, $hyperlink="") {
$righturl = $url;
if(!preg_match("![a-z]://!si", $url)) {
$righturl = "http://$righturl";
}
// remove threat of users including javascript in url
/*$righturl = preg_replace("/javascript:/si", "java script:", $righturl);
$righturl = preg_replace("/about:/si", "about :", $righturl);*/
$hyperlink = iif(trim($hyperlink)=="" or $hyperlink==$url, iif(strlen($url)>55,substr($url,0,35)."...".substr($url,-15),$url) ,$hyperlink);
return "<a href=file:///C|/WINDOWS/Desktop/%5C%22$righturl%5C%22 target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
}
Can ANYONE try to tell me if anything's wrong? If I can't fix it, I am just going to delete the whole thing from functions.php and remake them......