X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ftemplate-functions.php;h=dcf627628fd42a68acf14129737b5bb828a619cf;hp=208c2f21267780c53be2bf487f72bd1284fe0847;hb=7052cc3bd3ca07281078acbbce6ce595d753def1;hpb=e91b46ac59679cee1644aa6eb947b490b0ecd9ef diff --git a/inc/template-functions.php b/inc/template-functions.php index 208c2f2126..dcf627628f 100644 --- a/inc/template-functions.php +++ b/inc/template-functions.php @@ -112,7 +112,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) { // That's why you don't need any \n at the end of your HTML code... :-) if ($newLine === TRUE) { - outputRawCode(chr(10)); + outputRawCode(PHP_EOL); } // END - if } else { // Render mode for old or lame servers... @@ -120,7 +120,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) { // That's why you don't need any \n at the end of your HTML code... :-) if ($newLine === TRUE) { - $GLOBALS['__output'] .= chr(10); + $GLOBALS['__output'] .= PHP_EOL; } // END - if } break; @@ -135,7 +135,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) { // The same as above... ^ outputRawCode($htmlCode); if ($newLine === TRUE) { - outputRawCode(chr(10)); + outputRawCode(PHP_EOL); } // END - if break; @@ -1501,7 +1501,7 @@ function linenumberCode ($code) { if (!is_array($code)) { // We need an array, so try it with the new-line character - $codeE = explode(chr(10), $code); + $codeE = explode(PHP_EOL, $code); } // END - if $count_lines = count($codeE); @@ -1702,16 +1702,16 @@ function sendModeMails ($mod, $modes) { switch ($mode) { case 'normal': break; // Do not add any special lines case 'email': // Email was changed! - $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestElement('old_email') . chr(10); + $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestElement('old_email') . PHP_EOL; break; case 'password': // Password was changed - $content['message'] = '{--MEMBER_CHANGED_PASS--}' . chr(10); + $content['message'] = '{--MEMBER_CHANGED_PASS--}' . PHP_EOL; break; default: logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode)); - $content['message'] = '{--MEMBER_UNKNOWN_MODE--}' . ': ' . $mode . "\n\n"; + $content['message'] = '{--MEMBER_UNKNOWN_MODE--}' . ': ' . $mode . PHP_EOL . PHP_EOL; break; } // END - switch } // END - foreach @@ -2295,7 +2295,7 @@ function anonymizeSensitiveData ($data) { */ function compactContent ($uncompactedContent) { // First, remove all tab/new-line/revert characters - $compactedContent = str_replace(chr(9), '', str_replace(chr(10), '', str_replace(chr(13), '', $uncompactedContent))); + $compactedContent = str_replace(chr(9), '', str_replace(PHP_EOL, '', str_replace(chr(13), '', $uncompactedContent))); // Then regex all comments like away preg_match_all('//', $compactedContent, $matches);