// If not installed, perform a simple test. Just make it sure there is always a http:// or
// https:// in front of the URLs
- return isUrlValid($URL);
+ return isUrlValidSimple($URL);
}
// Generate a list of administrative links to a given userid
}
// Function taken from user comments on www.php.net / function eregi()
-function isUrlValid ($url) {
+function isUrlValidSimple ($url) {
// Prepare URL
$url = strip_tags(str_replace("\\", '', compileUriCode(urldecode($url))));