]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/html_mail_functions.php
Fixes for 'Can't use function return value in write context in /foo/bar.php'
[mailer.git] / inc / libs / html_mail_functions.php
index 3d08472af546526b408f64228c395a90d0c9a626..18419e3aa7e2eb937d2cacfa349439347c363f7a 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
+if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
+
 //
 function HTML_ADD_VALID_TAGS()
 {
@@ -155,8 +155,8 @@ function HTML_INSERT_URLS($text)
                $text .= $part;
        }
 
-       // Replace new-lines agains <BR>-s and finally compile possible own HTML tags out...
-       return COMPILE_CODE(str_replace("\n", "<BR>\n", $text));
+       // Replace new-lines agains <br />-s and finally compile possible own HTML tags out...
+       return COMPILE_CODE(str_replace("\n", "<br />\n", $text));
 }
 //
 function SEND_HTML_EMAIL($TO, $SUBJECT, $MSG, $FROM)