]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/newsletter_functions.php
Introduced (means, being added and then used) more wrappers for ext-order/other
[mailer.git] / inc / libs / newsletter_functions.php
index a2b3c0ae62356affc623318eb8a9aa1cb90159a1..c2610c7cbd962c5d553a237dc33db2ef5a428cd1 100644 (file)
@@ -38,7 +38,7 @@
 // Some security stuff...
 if (!defined('__SECURITY')) {
        die();
-}
+} // END - if
 
 //
 function insertNewsletterUrls ($text) {
@@ -56,7 +56,7 @@ function insertNewsletterUrls ($text) {
                } // END - foreach
 
                // Now replace the URL against anchor container and pray...
-               $text = substr($text, 0, strpos($text, $check2)) . generateDerefererUrl($check) . substr($text, strpos($text, $check2) + strlen($check));
+               $text = substr($text, 0, strpos($text, $check2)) . generateDereferrerUrl($check) . substr($text, strpos($text, $check2) + strlen($check));
 
                // Finally remove the url from testing string (or we have a loop and maybe server overload!)
                $test = substr($test, strpos($test, $check) + strlen($check));
@@ -78,11 +78,10 @@ function insertNewsletterUrls ($text) {
                $idx = $pos - 1;
                while ($idx > 0) {
                        $check = substr($test2, $idx, 1);
-                       if (!in_array($check, $GLOBALS['valid_email_chars']))
-                       {
+                       if (!in_array($check, $GLOBALS['valid_email_chars'])) {
                                // Char found so we end here
                                break;
-                       }
+                       } // END - if
                        $idx--;
                }
 
@@ -90,7 +89,7 @@ function insertNewsletterUrls ($text) {
                        // Starting mark is found
                        $check2 = substr($test, 0, ($idx + 1));
                        $test = substr($test, ($idx + 1));
-               }
+               } // END - if
 
                // And now go forward...
                $idx = 0;
@@ -99,28 +98,28 @@ function insertNewsletterUrls ($text) {
                        if ((!in_array($check, $GLOBALS['valid_email_chars'])) && ($check != '@')) {
                                // Char found so end here again
                                break;
-                       }
+                       } // END - if
                        $idx++;
-               }
+               } // END - while
 
                if ($idx > 0) {
                        // Maybe this is the email address?
                        $check = substr($test, 0, $idx);
-               }
+               } // END - if
 
                // Now replace the email against anchor with mailto and pray...
                array_push($PARTS, $check2 . $check);
 
                // Remove email from testing string (see above why...)
                $test = substr($test, strlen($check));
-       }
+       } // END - while
 
        // Now put all parts together
        $text = '';
        array_push($PARTS, $test);
        foreach ($PARTS as $part) {
                $text .= $part;
-       }
+       } // END - foreach
 
        // Pre-ompile possible own HTML tags out...
        return preCompileCode($text);
@@ -148,5 +147,5 @@ function sendNewsletter ($to, $subject, $message, $mode) {
        }
 }
 
-//
+// [EOF]
 ?>