]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/rewrite_functions.php
Missing properties added
[mailer.git] / inc / libs / rewrite_functions.php
index 236b440a3c213843401217d5ef643a1506ec1f01..561d281f4e5b71aae3a395f47aa56bf6f5af689c 100644 (file)
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Rewrite links in HTML for better SEO (ugly part of mx!)
-function REWRITE_LINKS ($HTML) {
+function rewriteLinksInCode ($HTML) {
        // Skip rewriting for configured modules
-       if (eregi($GLOBALS['module'], getConfig('rewrite_skip')) !== false) return $HTML;
+       if (eregi(getModule(), getConfig('rewrite_skip')) !== false) return $HTML;
 
        // Generate target URL
        $target = "{!URL!}/cms/";
@@ -66,17 +66,17 @@ function REWRITE_LINKS ($HTML) {
        } // END - if
 
        // Strip slashes as above for the main URL
-       $target2 = preg_quote($target, "/");
+       $target2 = preg_quote($target, '/');
 
        // Action variable
        $act = $target."\$1/act/";
 
        // Convert &|&action=...
-       $output = preg_replace("/" . $target2 . "(.*)&action=/i", $act, $output);
+       $output = preg_replace('/' . $target2 . "(.*)&action=/i", $act, $output);
 
        // "The same procedure as last variable"... now for &what=
        $wht = $target."\$1/wht/";
-       $output = preg_replace("/" . $target2 . "(.*)&what=/i", $wht, $output);
+       $output = preg_replace('/' . $target2 . "(.*)&what=/i", $wht, $output);
 
        // Repair missed &what=??? entries
        while (preg_match("/&what=(.*)\/(.*)\/(.*)/i", $output)) {