From: Roland Häder Date: Fri, 3 Apr 2009 09:39:42 +0000 (+0000) Subject: Renamed X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=40cba35363b7f371f88fe1048d444ca8e85be14c;p=mailer.git Renamed --- diff --git a/inc/functions.php b/inc/functions.php index 49ecee6906..dc5fe39367 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -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))));