X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fhtml_mail_functions.php;h=0ca2f48b0402d0357f9cfcb221930476f9afce82;hb=9bc2a494fae1a98f0873a6f3bd8c878b09124b9f;hp=6d0870a748a6efe03726e445d3163b76599307da;hpb=039203d5428c9c6a3bed61fb3a9a16958c6fd44c;p=mailer.git diff --git a/inc/libs/html_mail_functions.php b/inc/libs/html_mail_functions.php index 6d0870a748..0ca2f48b04 100644 --- a/inc/libs/html_mail_functions.php +++ b/inc/libs/html_mail_functions.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -55,7 +56,7 @@ function addValidHtmlTags() { // function checkHtmlTags ($html) { $test = stripslashes($html); - while (ereg('<', $test) && ereg('>', $test)) { + while (isInString('<', $test) && isInString('>', $test)) { $check = strtolower(substr($test, strpos($test, '<') + 1, strpos($test, '>') - strpos($test, '<') - 1)); $check = str_replace('/', '', $check); if (!in_array($check, $GLOBALS['html_tags'])) { @@ -73,12 +74,12 @@ function insertUrlsIntoHtml ($text) { $test = $text; // First replace URLs... - while (ereg('http://', $test)) { + while (isInString('http://', $test)) { $check = substr($test, strpos($test, 'http://')); $check2 = $check; // See ext-html.php if you want to add more URL ends... foreach ($GLOBALS['url_ends'] as $end) { - if (ereg($end, $check)) $check = substr($check, 0, strpos($check, $end)); + if (isInString($end, $check)) $check = substr($check, 0, strpos($check, $end)); } // END - foreach // Now replace the URL against anchor container and pray... @@ -96,7 +97,7 @@ function insertUrlsIntoHtml ($text) { // ... what will the email address be out the @... ;-) $PARTS = array(); - while (ereg('@', $test)) { + while (isInString('@', $test)) { $pos = strpos($test, '@'); $test2 = substr($test, 0, $pos); @@ -147,7 +148,7 @@ function insertUrlsIntoHtml ($text) { } // END - foreach // Replace new-lines agains
-s and finally compile possible own HTML tags out... - return compileCode(str_replace("\n", "
\n", $text)); + return preCompileCode(str_replace("\n", "
\n", $text)); } // Sends a HTML mail to the user