]> git.mxchange.org Git - mailer.git/commitdiff
Renamed
authorRoland Häder <roland@mxchange.org>
Fri, 3 Apr 2009 09:39:42 +0000 (09:39 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 3 Apr 2009 09:39:42 +0000 (09:39 +0000)
inc/functions.php

index 49ecee6906b7c82217b5860fd49e96f0b1144cc5..dc5fe393673e2e7315da6d28456b434765148c2e 100644 (file)
@@ -2010,7 +2010,7 @@ function isUrlValid ($URL, $compile=true) {
 
        // 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
@@ -2942,7 +2942,7 @@ function compileUriCode ($code, $simple=true) {
 }
 
 // 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))));