Possible further fix for #128
[mailer.git] / inc / functions.php
index 64e185bdec56a990499f7ae4018c482ea523da91..f55f5135603ad783649c0e0dfd92fd15e04f7ee1 100644 (file)
@@ -51,37 +51,36 @@ function OUTPUT_HTML ($HTML, $newLine = true) {
                // Yes, so we handle it as you have configured
                switch (getConfig('OUTPUT_MODE'))
                {
-               case 'render':
-                       // That's why you don't need any \n at the end of your HTML code... :-)
-                       if (constant('_OB_CACHING') == 'on') {
-                               // Output into PHP's internal buffer
-                               outputRawCode($HTML);
-
+                       case 'render':
                                // That's why you don't need any \n at the end of your HTML code... :-)
-                               if ($newLine) echo "\n";
-                       } else {
-                               // Render mode for old or lame servers...
-                               $OUTPUT .= $HTML;
+                               if (constant('_OB_CACHING') == 'on') {
+                                       // Output into PHP's internal buffer
+                                       outputRawCode($HTML);
 
-                               // That's why you don't need any \n at the end of your HTML code... :-)
-                               if ($newLine) $OUTPUT .= "\n";
-                       }
-                       break;
+                                       // That's why you don't need any \n at the end of your HTML code... :-)
+                                       if ($newLine) echo "\n";
+                               } else {
+                                       // Render mode for old or lame servers...
+                                       $OUTPUT .= $HTML;
+
+                                       // That's why you don't need any \n at the end of your HTML code... :-)
+                                       if ($newLine) $OUTPUT .= "\n";
+                               }
+                               break;
 
-               case 'direct':
-                       // If we are switching from render to direct output rendered code
-                       if ((!empty($OUTPUT)) && (constant('_OB_CACHING') != 'on')) { outputRawCode($OUTPUT); $OUTPUT = ''; }
+                       case 'direct':
+                               // If we are switching from render to direct output rendered code
+                               if ((!empty($OUTPUT)) && (constant('_OB_CACHING') != 'on')) { outputRawCode($OUTPUT); $OUTPUT = ''; }
 
-                       // The same as above... ^
-                       outputRawCode($HTML);
-                       if ($newLine) echo "\n";
-                       break;
+                               // The same as above... ^
+                               outputRawCode($HTML);
+                               if ($newLine) echo "\n";
+                               break;
 
-               default:
-                       // Huh, something goes wrong or maybe you have edited config.php ???
-                       DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid renderer %s detected.", getConfig('OUTPUT_MODE')));
-                       app_die(__FUNCTION__, __LINE__, "<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}");
-                       break;
+                       default:
+                               // Huh, something goes wrong or maybe you have edited config.php ???
+                               app_die(__FUNCTION__, __LINE__, "<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}");
+                               break;
                }
        } elseif ((constant('_OB_CACHING') == 'on') && (isset($GLOBALS['footer_sent'])) && ($GLOBALS['footer_sent'] == 1)) {
                // Headers already sent?
@@ -115,12 +114,15 @@ function OUTPUT_HTML ($HTML, $newLine = true) {
                sendHeader('Connection: Close');
 
                // Extension 'rewrite' installed?
-               if ((EXT_IS_ACTIVE('rewrite')) && ($GLOBALS['output_mode'] != '1') && ($GLOBALS['output_mode'] != '-1')) {
+               if ((EXT_IS_ACTIVE('rewrite')) && (getOutputMode() != '1') && (getOutputMode() != '-1')) {
                        $OUTPUT = rewriteLinksInCode($OUTPUT);
                } // END - if
 
                // Compile and run finished rendered HTML code
                while (strpos($OUTPUT, '{!') > 0) {
+                       // Replace _MYSQL_PREFIX
+                       $OUTPUT = str_replace("{!_MYSQL_PREFIX!}", getConfig('_MYSQL_PREFIX'), $OUTPUT);
+
                        // Prepare the content and eval() it...
                        $newContent = '';
                        $eval = "\$newContent = \"".COMPILE_CODE(smartAddSlashes($OUTPUT))."\";";
@@ -129,7 +131,7 @@ function OUTPUT_HTML ($HTML, $newLine = true) {
                        // Was that eval okay?
                        if (empty($newContent)) {
                                // Something went wrong!
-                               app_die(__FUNCTION__, __LINE__, "Evaluation error:<pre>".htmlentities($eval)."</pre>");
+                               app_die(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . htmlentities($eval) . '</pre>');
                        } // END - if
                        $OUTPUT = $newContent;
                } // END - while
@@ -138,7 +140,7 @@ function OUTPUT_HTML ($HTML, $newLine = true) {
                outputRawCode($OUTPUT);
        } elseif ((getConfig('OUTPUT_MODE') == 'render') && (!empty($OUTPUT))) {
                // Rewrite links when rewrite extension is active
-               if ((EXT_IS_ACTIVE('rewrite')) && ($GLOBALS['output_mode'] != '1') && ($GLOBALS['output_mode'] != '-1')) {
+               if ((EXT_IS_ACTIVE('rewrite')) && (getOutputMode() != '1') && (getOutputMode() != '-1')) {
                        $OUTPUT = rewriteLinksInCode($OUTPUT);
                } // END - if
 
@@ -209,6 +211,9 @@ function getTotalFatalErrors () {
 
 // Load a template file and return it's content (only it's name; do not use ' or ")
 function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
+       // @TODO Remove this sanity-check if all is fine
+       if (!is_bool($return)) debug_report_bug('return is not bool (' . gettype($return) . ')');
+
        // Add more variables which you want to use in your template files
        global $DATA, $username;
 
@@ -231,7 +236,7 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
        if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = 0;
 
        // @DEPRECATED Try to rewrite the if() condition
-       if ($template == "member_support_form") {
+       if ($template == 'member_support_form') {
                // Support request of a member
                $result = SQL_QUERY_ESC("SELECT userid, gender, surname, family, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
                        array(getUserId()), __FUNCTION__, __LINE__);
@@ -266,45 +271,48 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
        $mode = '';
 
        // Check for admin/guest/member templates
-       if (strpos($template, "admin_") > -1) {
+       if (strpos($template, 'admin_') > -1) {
                // Admin template found
-               $mode = "admin/";
-       } elseif (strpos($template, "guest_") > -1) {
+               $mode = 'admin/';
+       } elseif (strpos($template, 'guest_') > -1) {
                // Guest template found
-               $mode = "guest/";
-       } elseif (strpos($template, "member_") > -1) {
+               $mode = 'guest/';
+       } elseif (strpos($template, 'member_') > -1) {
                // Member template found
-               $mode = "member/";
-       } elseif (strpos($template, "install_") > -1) {
+               $mode = 'member/';
+       } elseif (strpos($template, 'install_') > -1) {
                // Installation template found
-               $mode = "install/";
-       } elseif (strpos($template, "ext_") > -1) {
+               $mode = 'install/';
+       } elseif (strpos($template, 'ext_') > -1) {
                // Extension template found
-               $mode = "ext/";
-       } elseif (strpos($template, "la_") > -1) {
-               // "Logical-area" template found
-               $mode = "la/";
+               $mode = 'ext/';
+       } elseif (strpos($template, 'la_') > -1) {
+               // 'Logical-area' template found
+               $mode = 'la/';
+       } elseif (strpos($template, 'js_') > -1) {
+               // JavaScript template found
+               $mode = 'js/';
        } else {
                // Test for extension
-               $test = substr($template, 0, strpos($template, "_"));
+               $test = substr($template, 0, strpos($template, '_'));
                if (EXT_IS_ACTIVE($test)) {
                        // Set extra path to extension's name
-                       $mode = $test.'/';
-               }
+                       $mode = $test . '/';
+               } // END - if
        }
 
        ////////////////////////
        // Generate file name //
        ////////////////////////
-       $FQFN = $basePath.$mode.$template.".tpl";
+       $FQFN = $basePath . $mode . $template . '.tpl';
 
-       if ((!empty($GLOBALS['what'])) && ((strpos($template, "_header") > 0) || (strpos($template, "_footer") > 0)) && (($mode == "guest/") || ($mode == "member/") || ($mode == "admin/"))) {
+       if ((isWhatSet()) && ((strpos($template, '_header') > 0) || (strpos($template, '_footer') > 0)) && (($mode == 'guest/') || ($mode == 'member/') || ($mode == 'admin/'))) {
                // Select what depended header/footer template file for admin/guest/member area
                $file2 = sprintf("%s%s%s_%s.tpl",
                        $basePath,
                        $mode,
                        $template,
-                       SQL_ESCAPE($GLOBALS['what'])
+                       getWhat()
                );
 
                // Probe for it...
@@ -312,12 +320,12 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
 
                // Remove variable from memory
                unset($file2);
-       }
+       } // END - if
 
        // Does the special template exists?
        if (!isFileReadable($FQFN)) {
                // Reset to default template
-               $FQFN = $basePath.$template.".tpl";
+               $FQFN = $basePath . $template . '.tpl';
        } // END - if
 
        // Now does the final template exists?
@@ -339,8 +347,11 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
                        $ret = $tmpl_file;
                }
 
-               // Add surrounding HTML comments to help finding bugs faster
-               $ret = "<!-- Template ".$template." - Start -->\n".$ret."<!-- Template ".$template." - End -->\n";
+               // Normal HTML output?
+               if ($GLOBALS['output_mode'] == 0) {
+                       // Add surrounding HTML comments to help finding bugs faster
+                       $ret = "<!-- Template " . $template . " - Start -->\n" . $ret . "<!-- Template " . $template . " - End -->\n";
+               } // END - if
        } elseif ((IS_ADMIN()) || ((isInstalling()) && (!isInstalled()))) {
                // Only admins shall see this warning or when installation mode is active
                $ret = "<br /><span class=\"guest_failed\">{--TEMPLATE_404--}</span><br />
@@ -369,12 +380,12 @@ function LOAD_TEMPLATE ($template, $return=false, $content=array()) {
                }
        } elseif (isDebugModeEnabled()) {
                // Warning, empty output!
-               return "E:".$template."<br />\n";
+               return "E:" . $template."<br />\n";
        }
 }
 
 // Send mail out to an email address
-function sendEmail($toEmail, $subject, $message, $HTML = 'N', $mailHeader = '') {
+function sendEmail ($toEmail, $subject, $message, $HTML = 'N', $mailHeader = '') {
        //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):TO={$toEmail},SUBJECT={$subject}<br />\n";
 
        // Compile subject line (for POINTS constant etc.)
@@ -404,7 +415,7 @@ function sendEmail($toEmail, $subject, $message, $HTML = 'N', $mailHeader = '')
                        // Free result
                        SQL_FREERESULT($result_email);
                }
-       } elseif ("$toEmail" == '0') {
+       } elseif ($toEmail == '0') {
                // Is the webmaster!
                $toEmail = constant('WEBMASTER');
        }
@@ -415,18 +426,18 @@ function sendEmail($toEmail, $subject, $message, $HTML = 'N', $mailHeader = '')
                // Not in PHPMailer-Mode
                if (empty($mailHeader)) {
                        // Load email header template
-                       $mailHeader = LOAD_EMAIL_TEMPLATE("header");
+                       $mailHeader = LOAD_EMAIL_TEMPLATE('header');
                } else {
                        // Append header
-                       $mailHeader .= LOAD_EMAIL_TEMPLATE("header");
+                       $mailHeader .= LOAD_EMAIL_TEMPLATE('header');
                }
        } elseif (isDebugModeEnabled()) {
                if (empty($mailHeader)) {
                        // Load email header template
-                       $mailHeader = LOAD_EMAIL_TEMPLATE("header");
+                       $mailHeader = LOAD_EMAIL_TEMPLATE('header');
                } else {
                        // Append header
-                       $mailHeader .= LOAD_EMAIL_TEMPLATE("header");
+                       $mailHeader .= LOAD_EMAIL_TEMPLATE('header');
                }
        }
 
@@ -442,11 +453,11 @@ function sendEmail($toEmail, $subject, $message, $HTML = 'N', $mailHeader = '')
        if (empty($HTML)) $HTML = 'N';
        if (isDebugModeEnabled()) {
                // In debug mode we want to display the mail instead of sending it away so we can debug this part
-               print("<pre>
+               OUTPUT_HTML("<pre>
 ".htmlentities(trim($mailHeader))."
-To      : ".$toEmail."
-Subject : ".$subject."
-Message : ".$message."
+To      : " . $toEmail."
+Subject : " . $subject."
+Message : " . $message."
 </pre>\n");
        } elseif (($HTML == 'Y') && (EXT_IS_ACTIVE('html_mail'))) {
                // Send mail as HTML away
@@ -468,7 +479,7 @@ function checkPhpMailerUsage() {
 }
 
 // Send out a raw email with PHPMailer class or legacy mail() command
-function sendRawEmail ($toEmail, $subject, $msg, $from) {
+function sendRawEmail ($toEmail, $subject, $message, $from) {
        // Shall we use PHPMailer class or legacy mode?
        if (checkPhpMailerUsage()) {
                // Use PHPMailer class with SMTP enabled
@@ -492,13 +503,13 @@ function sendRawEmail ($toEmail, $subject, $msg, $from) {
                }
                $mail->FromName   = constant('MAIN_TITLE');
                $mail->Subject    = $subject;
-               if ((EXT_IS_ACTIVE('html_mail')) && (strip_tags($msg) != $msg)) {
-                       $mail->Body       = $msg;
+               if ((EXT_IS_ACTIVE('html_mail')) && (strip_tags($message) != $message)) {
+                       $mail->Body       = $message;
                        $mail->AltBody    = 'Your mail program required HTML support to read this mail!';
                        $mail->WordWrap   = 70;
                        $mail->IsHTML(true);
                } else {
-                       $mail->Body       = decodeEntities($msg);
+                       $mail->Body       = decodeEntities($message);
                }
                $mail->AddAddress($toEmail, '');
                $mail->AddReplyTo(constant('WEBMASTER'), constant('MAIN_TITLE'));
@@ -507,21 +518,21 @@ function sendRawEmail ($toEmail, $subject, $msg, $from) {
                $mail->Send();
        } else {
                // Use legacy mail() command
-               @mail($toEmail, $subject, decodeEntities($msg), $from);
+               mail($toEmail, $subject, decodeEntities($message), $from);
        }
 }
 
 // Generate a password in a specified length or use default password length
-function generatePassword ($LEN = 0) {
+function generatePassword ($length = 0) {
        // Auto-fix invalid length of zero
-       if ($LEN == 0) $LEN = getConfig('pass_len');
+       if ($length == 0) $length = getConfig('pass_len');
 
        // Initialize array with all allowed chars
-       $ABC = explode(',', 'a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/');
+       $ABC = explode(',', 'a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,W,X,Y,Z,0,1,2,3,4,5,6,7,8,9,-,+,_,/,.');
 
        // Start creating password
        $PASS = '';
-       for ($i = 0; $i < $LEN; $i++) {
+       for ($i = 0; $i < $length; $i++) {
                $PASS .= $ABC[mt_rand(0, count($ABC) -1)];
        } // END - for
 
@@ -549,28 +560,28 @@ function generateDateTime ($time, $mode = '0') {
 
        switch (getLanguage())
        {
-       case 'de': // German date / time format
-               switch ($mode) {
-                       case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
-                       case '1': $ret = strtolower(date("d.m.Y - H:i", $time)); break;
-                       case '2': $ret = date("d.m.Y|H:i", $time); break;
-                       case '3': $ret = date("d.m.Y", $time); break;
-                       default:
-                               DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
-                               break;
-               }
-               break;
-
-       default: // Default is the US date / time format!
-               switch ($mode) {
-                       case '0': $ret = date("r", $time); break;
-                       case '1': $ret = date("Y-m-d - g:i A", $time); break;
-                       case '2': $ret = date("y-m-d|H:i", $time); break;
-                       case '3': $ret = date("y-m-d", $time); break;
-                       default:
-                               DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
-                               break;
-               }
+               case 'de': // German date / time format
+                       switch ($mode) {
+                               case '0': $ret = date("d.m.Y \u\m H:i \U\h\\r", $time); break;
+                               case '1': $ret = strtolower(date("d.m.Y - H:i", $time)); break;
+                               case '2': $ret = date("d.m.Y|H:i", $time); break;
+                               case '3': $ret = date("d.m.Y", $time); break;
+                               default:
+                                       DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
+                                       break;
+                       }
+                       break;
+
+                               default: // Default is the US date / time format!
+                                       switch ($mode) {
+                                               case '0': $ret = date("r", $time); break;
+                                               case '1': $ret = date("Y-m-d - g:i A", $time); break;
+                                               case '2': $ret = date("y-m-d|H:i", $time); break;
+                                               case '3': $ret = date("y-m-d", $time); break;
+                                               default:
+                                                       DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
+                                                       break;
+                                       }
        }
        return $ret;
 }
@@ -578,7 +589,7 @@ function generateDateTime ($time, $mode = '0') {
 // Translates Y/N to yes/no
 function translateYesNo ($yn) {
        // Default
-       $translated = "??? (".$yn.')';
+       $translated = "??? (" . $yn.')';
        switch ($yn) {
                case 'Y': $translated = getMessage('YES'); break;
                case 'N': $translated = getMessage('NO'); break;
@@ -636,13 +647,13 @@ function translateComma ($dotted, $cut = true, $max = 0) {
 
        // Translate it now
        switch (getLanguage()) {
-       case 'de':
-               $dotted = number_format($dotted, $maxComma, ',', '.');
-               break;
+               case 'de':
+                       $dotted = number_format($dotted, $maxComma, ',', '.');
+                       break;
 
-       default:
-               $dotted = number_format($dotted, $maxComma, '.', ',');
-               break;
+               default:
+                       $dotted = number_format($dotted, $maxComma, '.', ',');
+                       break;
        }
 
        // Return translated value
@@ -673,21 +684,21 @@ function translateGender ($gender) {
 function translateUserStatus ($status) {
        switch ($status)
        {
-       case 'UNCONFIRMED':
-       case 'CONFIRMED':
-       case 'LOCKED':
-               $ret = getMessage(sprintf("ACCOUNT_%s", $status));
-               break;
-
-       case '':
-       case null:
-               $ret = getMessage('ACCOUNT_DELETED');
-               break;
-
-       default:
-               DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
-               $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
-               break;
+               case 'UNCONFIRMED':
+               case 'CONFIRMED':
+               case 'LOCKED':
+                       $ret = getMessage(sprintf("ACCOUNT_%s", $status));
+                       break;
+
+               case '':
+               case null:
+                       $ret = getMessage('ACCOUNT_DELETED');
+                       break;
+
+               default:
+                       DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
+                       $ret = sprintf(getMessage('UNKNOWN_STATUS'), $status);
+                       break;
        }
 
        // Return it
@@ -710,7 +721,7 @@ function DEREFERER ($URL) {
 function FRAMETESTER ($URL) {
        // Prepare frametester URL
        $frametesterUrl = sprintf("{!URL!}/modules.php?module=frametester&amp;url=%s",
-               encodeString(compileUriCode($URL))
+       encodeString(compileUriCode($URL))
        );
        return $frametesterUrl;
 }
@@ -731,54 +742,12 @@ function generateCaptchaCode ($code, $type, $DATA, $uid) {
        return '<IMG border="0" alt="Code" src="{!URL!}/mailid_top.php?uid=' . $uid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '" />';
 }
 
-// "Getter" for language
-function getLanguage () {
-       // Set default return value to default language from config
-       $ret = getConfig('DEFAULT_LANG');
-
-       // Init variable
-       $lang = '';
-
-       // Is the variable set
-       if (REQUEST_ISSET_GET('mx_lang')) {
-               // Accept only first 2 chars
-               $lang = substr(REQUEST_GET('mx_lang'), 0, 2);
-       } elseif (isset($GLOBALS['cache_array']['language'])) {
-               // Use cached
-               $ret = $GLOBALS['cache_array']['language'];
-       } elseif (!empty($lang)) {
-               // Check if main language file does exist
-               if (isFileReadable(constant('PATH') . 'inc/language/'.$lang.'.php')) {
-                       // Okay found, so let's update cookies
-                       setLanguage($lang);
-               } // END - if
-       } elseif (isSessionVariableSet('mx_lang')) {
-               // Return stored value from cookie
-               $ret = getSession('mx_lang');
-
-               // Fixes a warning before the session has the mx_lang constant
-               if (empty($ret)) $ret = getConfig('DEFAULT_LANG');
-       }
-
-       // Cache entry
-       $GLOBALS['cache_array']['language'] = $ret;
-
-       // Return value
-       return $ret;
-}
-
-// "Setter" for language
-function setLanguage ($lang) {
-       // Accept only first 2 chars!
-       $lang = substr(SQL_ESCAPE(strip_tags($lang)), 0, 2);
-
-       // Set cookie
-       setSession('mx_lang', $lang);
-}
-
 // Loads an email template and compiles it
 function LOAD_EMAIL_TEMPLATE ($template, $content = array(), $UID = '0') {
-       global $DATA, $_CONFIG;
+       global $DATA;
+
+       // Our configuration is kept non-global here
+       $_CONFIG = getConfigArray();
 
        // Make sure all template names are lowercase!
        $template = strtolower($template);
@@ -829,12 +798,12 @@ function LOAD_EMAIL_TEMPLATE ($template, $content = array(), $UID = '0') {
                        //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NICKNAME!<br />\n";
                        // Load nickname
                        $result = SQL_QUERY_ESC("SELECT surname, family, gender, email, nickname FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-                               array(bigintval($UID)), __FUNCTION__, __LINE__);
+                       array(bigintval($UID)), __FUNCTION__, __LINE__);
                } else {
                        //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):NO-NICK!<br />\n";
                        /// Load normal data
                        $result = SQL_QUERY_ESC("SELECT surname, family, gender, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-                               array(bigintval($UID)), __FUNCTION__, __LINE__);
+                       array(bigintval($UID)), __FUNCTION__, __LINE__);
                }
 
                // Fetch and merge data
@@ -861,29 +830,29 @@ function LOAD_EMAIL_TEMPLATE ($template, $content = array(), $UID = '0') {
        // Check for admin/guest/member templates
        if (strpos($template, 'admin_') > -1) {
                // Admin template found
-               $FQFN = $basePath.'admin/'.$template.'.tpl';
+               $FQFN = $basePath.'admin/' . $template.'.tpl';
        } elseif (strpos($template, 'guest_') > -1) {
                // Guest template found
-               $FQFN = $basePath.'guest/'.$template.'.tpl';
+               $FQFN = $basePath.'guest/' . $template.'.tpl';
        } elseif (strpos($template, 'member_') > -1) {
                // Member template found
-               $FQFN = $basePath.'member/'.$template.'.tpl';
+               $FQFN = $basePath.'member/' . $template.'.tpl';
        } else {
                // Test for extension
                $test = substr($template, 0, strpos($template, '_'));
                if (EXT_IS_ACTIVE($test)) {
                        // Set extra path to extension's name
-                       $FQFN = $basePath.$test.'/'.$template.'.tpl';
+                       $FQFN = $basePath . $test.'/' . $template.'.tpl';
                } else {
                        // No special filename
-                       $FQFN = $basePath.$template.'.tpl';
+                       $FQFN = $basePath . $template.'.tpl';
                }
        }
 
        // Does the special template exists?
        if (!isFileReadable($FQFN)) {
                // Reset to default template
-               $FQFN = $basePath.$template.'.tpl';
+               $FQFN = $basePath . $template.'.tpl';
        } // END - if
 
        // Now does the final template exists?
@@ -898,7 +867,7 @@ function LOAD_EMAIL_TEMPLATE ($template, $content = array(), $UID = '0') {
                eval($tmpl_file);
        } elseif (!empty($template)) {
                // Template file not found!
-               $newContent = "{--TEMPLATE_404--}: ".$template."<br />
+               $newContent = "{--TEMPLATE_404--}: " . $template."<br />
 {--TEMPLATE_CONTENT--}
 <pre>".print_r($content, true)."</pre>
 {--TEMPLATE_DATA--}
@@ -915,7 +884,7 @@ function LOAD_EMAIL_TEMPLATE ($template, $content = array(), $UID = '0') {
        // Is there some content?
        if (empty($newContent)) {
                // Compiling failed
-               $newContent = "Compiler error for template {$template}!\nUncompiled content:\n".$tmpl_file;
+               $newContent = "Compiler error for template {$template}!\nUncompiled content:\n" . $tmpl_file;
                // Add last error if the required function exists
                if (function_exists('error_get_last')) $newContent .= "\n--------------------------------------\nDebug:\n".print_r(error_get_last(), true)."--------------------------------------\nPlease don't alter these informations!\nThanx.";
        } // END - if
@@ -951,7 +920,7 @@ function redirectToUrl ($URL) {
        } // END - if
 
        // Three different debug ways...
-       /* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
+       //* DEBUG: */ debug_report_bug(sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
        //* DEBUG: */ DEBUG_LOG(__FUNCTION__, __LINE__, $URL);
        //* DEBUG: */ die($URL);
 
@@ -972,11 +941,11 @@ function redirectToUrl ($URL) {
                clearOutputBuffer();
        } // END - if
 
-       // Secure the URL against bad things such als HTML insertions and so on...
-       $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
-
        // Simple probe for bots/spiders from search engines
        if ((strpos(detectUserAgent(), 'spider') !== false) || (strpos(detectUserAgent(), 'bot') !== false)) {
+               // Secure the URL against bad things such als HTML insertions and so on...
+               $URL = htmlentities(strip_tags($URL), ENT_QUOTES);
+
                // Output new location link as anchor
                OUTPUT_HTML('<a href="' . $URL . '"' . $rel . '>' . $URL . '</a>');
        } elseif (!headers_sent()) {
@@ -1073,17 +1042,17 @@ function COMPILE_CODE ($code, $simple = false, $constants = true, $full = true)
                        if ($fuzzyFound) continue;
 
                        // Take all string elements
-                       if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_".$matches[4][$key]]))) {
+                       if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key."_" . $matches[4][$key]]))) {
                                // Replace it in the code
                                //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):key={$key},match={$match}<br />\n";
-                               $newMatch = str_replace("[".$matches[4][$key]."]", "['".$matches[4][$key]."']", $match);
-                               $code = str_replace($match, "\".".$newMatch.".\"", $code);
-                               $matchesFound[$key."_".$matches[4][$key]] = 1;
+                               $newMatch = str_replace("[" . $matches[4][$key]."]", "['" . $matches[4][$key]."']", $match);
+                               $code = str_replace($match, "\"." . $newMatch.".\"", $code);
+                               $matchesFound[$key."_" . $matches[4][$key]] = 1;
                                $matchesFound[$match] = 1;
                        } elseif (!isset($matchesFound[$match])) {
                                // Not yet replaced!
                                //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):match={$match}<br />\n";
-                               $code = str_replace($match, "\".".$match.".\"", $code);
+                               $code = str_replace($match, "\"." . $match.".\"", $code);
                                $matchesFound[$match] = 1;
                        }
                } // END - foreach
@@ -1150,109 +1119,109 @@ function ADD_SELECTION ($type, $default, $prefix = '', $id = '0') {
 
        if ($type == 'yn') {
                // This is a yes/no selection only!
-               if ($id > 0) $prefix .= "[".$id."]";
-               $OUT .= "    <select name=\"".$prefix."\" class=\"register_select\" size=\"1\">\n";
+               if ($id > 0) $prefix .= "[" . $id."]";
+               $OUT .= "    <select name=\"" . $prefix."\" class=\"register_select\" size=\"1\">\n";
        } else {
                // Begin with regular selection box here
                if (!empty($prefix)) $prefix .= "_";
                $type2 = $type;
-               if ($id > 0) $type2 .= "[".$id."]";
-               $OUT .= "    <select name=\"".strtolower($prefix.$type2)."\" class=\"register_select\" size=\"1\">\n";
+               if ($id > 0) $type2 .= "[" . $id."]";
+               $OUT .= "    <select name=\"".strtolower($prefix . $type2)."\" class=\"register_select\" size=\"1\">\n";
        }
 
        switch ($type) {
-       case "day": // Day
-               for ($idx = 1; $idx < 32; $idx++) {
-                       $OUT .= "<option value=\"".$idx."\"";
-                       if ($default == $idx) $OUT .= ' selected="selected"';
-                       $OUT .= ">".$idx."</option>\n";
-               } // END - for
-               break;
+               case "day": // Day
+                       for ($idx = 1; $idx < 32; $idx++) {
+                               $OUT .= "<option value=\"" . $idx."\"";
+                               if ($default == $idx) $OUT .= ' selected="selected"';
+                               $OUT .= ">" . $idx."</option>\n";
+                       } // END - for
+                       break;
 
-       case "month": // Month
-               foreach ($GLOBALS['month_descr'] as $month => $descr) {
-                       $OUT .= "<option value=\"".$month."\"";
-                       if ($default == $month) $OUT .= ' selected="selected"';
-                       $OUT .= ">".$descr."</option>\n";
-               } // END - for
-               break;
+               case "month": // Month
+                       foreach ($GLOBALS['month_descr'] as $month => $descr) {
+                               $OUT .= "<option value=\"" . $month."\"";
+                               if ($default == $month) $OUT .= ' selected="selected"';
+                               $OUT .= ">" . $descr."</option>\n";
+                       } // END - for
+                       break;
 
-       case "year": // Year
-               // Get current year
-               $year = date('Y', time());
+               case "year": // Year
+                       // Get current year
+                       $year = date('Y', time());
 
-               // Use configured min age or fixed?
-               if (GET_EXT_VERSION('other') >= '0.2.1') {
-                       // Configured
-                       $startYear = $year - getConfig('min_age');
-               } else {
-                       // Fixed 16 years
-                       $startYear = $year - 16;
-               }
+                       // Use configured min age or fixed?
+                       if (GET_EXT_VERSION('other') >= '0.2.1') {
+                               // Configured
+                               $startYear = $year - getConfig('min_age');
+                       } else {
+                               // Fixed 16 years
+                               $startYear = $year - 16;
+                       }
 
-               // Calculate earliest year (100 years old people can still enter Internet???)
-               $minYear = $year - 100;
+                       // Calculate earliest year (100 years old people can still enter Internet???)
+                       $minYear = $year - 100;
+
+                       // Check if the default value is larger than minimum and bigger than actual year
+                       if (($default > $minYear) && ($default >= $year)) {
+                               for ($idx = $year; $idx < ($year + 11); $idx++) {
+                                       $OUT .= "<option value=\"" . $idx."\"";
+                                       if ($default == $idx) $OUT .= ' selected="selected"';
+                                       $OUT .= ">" . $idx."</option>\n";
+                               } // END - for
+                       } elseif ($default == -1) {
+                               // Current year minus 1
+                               for ($idx = $startYear; $idx <= ($year + 1); $idx++)
+                               {
+                                       $OUT .= "<option value=\"" . $idx."\">" . $idx."</option>\n";
+                               }
+                       } else {
+                               // Get current year and subtract the configured minimum age
+                               $OUT .= "<option value=\"".($minYear - 1)."\">&lt;" . $minYear."</option>\n";
+                               // Calculate earliest year depending on extension version
+                               if (GET_EXT_VERSION('other') >= '0.2.1') {
+                                       // Use configured minimum age
+                                       $year = date('Y', time()) - getConfig('min_age');
+                               } else {
+                                       // Use fixed 16 years age
+                                       $year = date('Y', time()) - 16;
+                               }
+
+                               // Construct year selection list
+                               for ($idx = $minYear; $idx <= $year; $idx++) {
+                                       $OUT .= "<option value=\"" . $idx."\"";
+                                       if ($default == $idx) $OUT .= ' selected="selected"';
+                                       $OUT .= ">" . $idx."</option>\n";
+                               } // END - for
+                       }
+                       break;
 
-               // Check if the default value is larger than minimum and bigger than actual year
-               if (($default > $minYear) && ($default >= $year)) {
-                       for ($idx = $year; $idx < ($year + 11); $idx++) {
-                               $OUT .= "<option value=\"".$idx."\"";
+               case "sec":
+               case "min":
+                       for ($idx = 0; $idx < 60; $idx+=5) {
+                               if (strlen($idx) == 1) $idx = '0' . $idx;
+                               $OUT .= "<option value=\"" . $idx."\"";
                                if ($default == $idx) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        } // END - for
-               } elseif ($default == -1) {
-                       // Current year minus 1
-                       for ($idx = $startYear; $idx <= ($year + 1); $idx++)
-                       {
-                               $OUT .= "<option value=\"".$idx."\">".$idx."</option>\n";
-                       }
-               } else {
-                       // Get current year and subtract the configured minimum age
-                       $OUT .= "<option value=\"".($minYear - 1)."\">&lt;".$minYear."</option>\n";
-                       // Calculate earliest year depending on extension version
-                       if (GET_EXT_VERSION('other') >= '0.2.1') {
-                               // Use configured minimum age
-                               $year = date('Y', time()) - getConfig('min_age');
-                       } else {
-                               // Use fixed 16 years age
-                               $year = date('Y', time()) - 16;
-                       }
+                       break;
 
-                       // Construct year selection list
-                       for ($idx = $minYear; $idx <= $year; $idx++) {
-                               $OUT .= "<option value=\"".$idx."\"";
+               case "hour":
+                       for ($idx = 0; $idx < 24; $idx++) {
+                               if (strlen($idx) == 1) $idx = '0' . $idx;
+                               $OUT .= "<option value=\"" . $idx."\"";
                                if ($default == $idx) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        } // END - for
-               }
-               break;
-
-       case "sec":
-       case "min":
-               for ($idx = 0; $idx < 60; $idx+=5) {
-                       if (strlen($idx) == 1) $idx = '0'.$idx;
-                       $OUT .= "<option value=\"".$idx."\"";
-                       if ($default == $idx) $OUT .= ' selected="selected"';
-                       $OUT .= ">".$idx."</option>\n";
-               } // END - for
-               break;
-
-       case "hour":
-               for ($idx = 0; $idx < 24; $idx++) {
-                       if (strlen($idx) == 1) $idx = '0'.$idx;
-                       $OUT .= "<option value=\"".$idx."\"";
-                       if ($default == $idx) $OUT .= ' selected="selected"';
-                       $OUT .= ">".$idx."</option>\n";
-               } // END - for
-               break;
-
-       case 'yn':
-               $OUT .= "<option value=\"Y\"";
-               if ($default == 'Y') $OUT .= ' selected="selected"';
-               $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
-               if ($default == 'N') $OUT .= ' selected="selected"';
-               $OUT .= ">{--NO--}</option>\n";
-               break;
+                       break;
+
+               case 'yn':
+                       $OUT .= "<option value=\"Y\"";
+                       if ($default == 'Y') $OUT .= ' selected="selected"';
+                       $OUT .= ">{--YES--}</option>\n<option value=\"N\"";
+                       if ($default == 'N') $OUT .= ' selected="selected"';
+                       $OUT .= ">{--NO--}</option>\n";
+                       break;
        }
        $OUT .= "    </select>\n";
        return $OUT;
@@ -1262,7 +1231,7 @@ function ADD_SELECTION ($type, $default, $prefix = '', $id = '0') {
 // Deprecated : $length
 // Optional   : $DATA
 //
-function generateRandomCodde ($length, $code, $uid, $DATA = '') {
+function generateRandomCode ($length, $code, $uid, $DATA = '') {
        // Fix missing _MAX constant
        // @TODO Rewrite this unnice code
        if (!defined('_MAX')) define('_MAX', 15235);
@@ -1278,27 +1247,27 @@ function generateRandomCodde ($length, $code, $uid, $DATA = '') {
        if (isConfigEntrySet('master_salt')) $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('master_salt');
 
        // Build string from misc data
-       $data   = $code.getConfig('ENCRYPT_SEPERATOR').$uid.getConfig('ENCRYPT_SEPERATOR').$DATA;
+       $data   = $code.getConfig('ENCRYPT_SEPERATOR') . $uid.getConfig('ENCRYPT_SEPERATOR') . $DATA;
 
        // Add more additional data
        if (isSessionVariableSet('u_hash'))         $data .= getConfig('ENCRYPT_SEPERATOR').getSession('u_hash');
        if (isUserIdSet())                          $data .= getConfig('ENCRYPT_SEPERATOR').getUserId();
        if (isSessionVariableSet('mxchange_theme')) $data .= getConfig('ENCRYPT_SEPERATOR').getSession('mxchange_theme');
        if (isSessionVariableSet('mx_lang'))        $data .= getConfig('ENCRYPT_SEPERATOR').getLanguage();
-       if (isset($GLOBALS['refid']))               $data .= getConfig('ENCRYPT_SEPERATOR').$GLOBALS['refid'];
+       if (isset($GLOBALS['refid']))               $data .= getConfig('ENCRYPT_SEPERATOR') . $GLOBALS['refid'];
 
        // Calculate number for generating the code
        $a = $code + getConfig('_ADD') - 1;
 
        if (isConfigEntrySet('master_hash')) {
                // Generate hash with master salt from modula of number with the prime number and other data
-               $saltedHash = generateHash(($a % getConfig('_PRIME')).getConfig('ENCRYPT_SEPERATOR').$server.getConfig('ENCRYPT_SEPERATOR').$keys.getConfig('ENCRYPT_SEPERATOR').$data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR').$a, getConfig('master_salt'));
+               $saltedHash = generateHash(($a % getConfig('_PRIME')).getConfig('ENCRYPT_SEPERATOR') . $server.getConfig('ENCRYPT_SEPERATOR') . $keys.getConfig('ENCRYPT_SEPERATOR') . $data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR') . $a, getConfig('master_salt'));
 
                // Create number from hash
                $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(constant('_MAX') - $a + sqrt(getConfig('_ADD'))) / pi();
        } else {
                // Generate hash with "hash of site key" from modula of number with the prime number and other data
-               $saltedHash = generateHash(($a % getConfig('_PRIME')).getConfig('ENCRYPT_SEPERATOR').$server.getConfig('ENCRYPT_SEPERATOR').$keys.getConfig('ENCRYPT_SEPERATOR').$data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR').$a, substr(sha1(getConfig('SITE_KEY')), 0, 8));
+               $saltedHash = generateHash(($a % getConfig('_PRIME')).getConfig('ENCRYPT_SEPERATOR') . $server.getConfig('ENCRYPT_SEPERATOR') . $keys.getConfig('ENCRYPT_SEPERATOR') . $data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR') . $a, substr(sha1(getConfig('SITE_KEY')), 0, 8));
 
                // Create number from hash
                $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(constant('_MAX') - $a + sqrt(getConfig('_ADD'))) / pi();
@@ -1326,9 +1295,9 @@ function bigintval ($num, $castValue = true) {
 
        // Has the whole value changed?
        // @TODO Remove this if() block if all is working fine
-       if ("".$ret."" != ''.$num."") {
+       if ('' . $ret . '' != '' . $num . '') {
                // Log the values
-               debug_report_bug("{$ret}<>{$num}");
+               //debug_report_bug("{$ret}<>{$num}");
        } // END - if
 
        // Return result
@@ -1342,7 +1311,7 @@ function GENERATE_IMAGE ($img_code, $headerSent=true) {
                return;
        } elseif (!$headerSent) {
                // Return in an HTML code code
-               return "<img src=\"{!URL!}/img.php?code=".$img_code."\" alt=\"Image\" />\n";
+               return "<img src=\"{!URL!}/img.php?code=" . $img_code."\" alt=\"Image\" />\n";
        }
 
        // Load image
@@ -1351,15 +1320,15 @@ function GENERATE_IMAGE ($img_code, $headerSent=true) {
                // Switch image type
                switch (getConfig('img_type'))
                {
-               case 'jpg':
-                       // Okay, load image and hide all errors
-                       $image = @imagecreatefromjpeg($img);
-                       break;
+                       case 'jpg':
+                               // Okay, load image and hide all errors
+                               $image = @imagecreatefromjpeg($img);
+                               break;
 
-               case 'png':
-                       // Okay, load image and hide all errors
-                       $image = @imagecreatefrompng($img);
-                       break;
+                       case 'png':
+                               // Okay, load image and hide all errors
+                               $image = @imagecreatefrompng($img);
+                               break;
                }
        } else {
                // Exit function here
@@ -1389,7 +1358,7 @@ function GENERATE_IMAGE ($img_code, $headerSent=true) {
 function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
        // Calculate 2-seconds timestamp
        $stamp = round($timestamp);
-       //* DEBUG: */ print("*".$stamp.'/'.$timestamp."*<br />");
+       //* DEBUG: */ print("*" . $stamp.'/' . $timestamp."*<br />");
 
        // Do we have a leap year?
        $SWITCH = 0;
@@ -1444,7 +1413,7 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
                );
        } else {
                // Generate table
-               $OUT  = "<div align=\"".$align."\">\n";
+               $OUT  = "<div align=\"" . $align."\">\n";
                $OUT .= "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"admin_table dashed\">\n";
                $OUT .= "<tr>\n";
 
@@ -1452,7 +1421,7 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
                        $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_YEARS--}</strong></td>\n";
                }
 
-               if (ereg("M", $display) || (empty($display))) {
+               if (ereg('M', $display) || (empty($display))) {
                        $OUT .= "  <td align=\"center\" class=\"admin_title bottom\"><div class=\"tiny\">{--_MONTHS--}</strong></td>\n";
                }
 
@@ -1481,94 +1450,94 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
 
                if (ereg('Y', $display) || (empty($display))) {
                        // Generate year selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_ye\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ye\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 10; $idx++) {
-                               $OUT .= "    <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "    <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $Y) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ye\" value=\"0\" />\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_ye\" value=\"0\" />\n";
                }
 
-               if (ereg("M", $display) || (empty($display))) {
+               if (ereg('M', $display) || (empty($display))) {
                        // Generate month selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_mo\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mo\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 11; $idx++)
                        {
-                                       $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $M) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mo\" value=\"0\" />\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_mo\" value=\"0\" />\n";
                }
 
                if (ereg("W", $display) || (empty($display))) {
                        // Generate week selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_we\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_we\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 4; $idx++) {
-                               $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $W) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_we\" value=\"0\" />\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_we\" value=\"0\" />\n";
                }
 
                if (ereg("D", $display) || (empty($display))) {
                        // Generate day selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_da\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_da\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 31; $idx++) {
-                               $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $D) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_da\" value=\"0\">\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_da\" value=\"0\">\n";
                }
 
                if (ereg("h", $display) || (empty($display))) {
                        // Generate hour selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_ho\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_ho\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 23; $idx++)      {
-                               $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $h) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_ho\" value=\"0\">\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_ho\" value=\"0\">\n";
                }
 
                if (ereg('m', $display) || (empty($display))) {
                        // Generate minute selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_mi\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_mi\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 59; $idx++) {
-                               $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $m) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_mi\" value=\"0\">\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_mi\" value=\"0\">\n";
                }
 
                if (ereg("s", $display) || (empty($display))) {
                        // Generate second selection
-                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"".$prefix."_se\" size=\"1\">\n";
+                       $OUT .= "  <td align=\"center\"><select class=\"mini_select\" name=\"" . $prefix."_se\" size=\"1\">\n";
                        for ($idx = 0; $idx <= 59; $idx++) {
-                               $OUT .= "  <option class=\"mini_select\" value=\"".$idx."\"";
+                               $OUT .= "  <option class=\"mini_select\" value=\"" . $idx."\"";
                                if ($idx == $s) $OUT .= ' selected="selected"';
-                               $OUT .= ">".$idx."</option>\n";
+                               $OUT .= ">" . $idx."</option>\n";
                        }
                        $OUT .= "  </select></td>\n";
                } else {
-                       $OUT .= "<INPUT type=\"hidden\" name=\"".$prefix."_se\" value=\"0\">\n";
+                       $OUT .= "<INPUT type=\"hidden\" name=\"" . $prefix."_se\" value=\"0\">\n";
                }
                $OUT .= "</tr>\n";
                $OUT .= "</table>\n";
@@ -1614,15 +1583,15 @@ function SEND_ADMIN_EMAILS_PRO ($subj, $template, $content, $UID) {
        $template = trim($template);
 
        // Load email template
-       $msg = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
+       $message = LOAD_EMAIL_TEMPLATE($template, $content, $UID);
 
        // Check which admin shall receive this mail
        $result = SQL_QUERY_ESC("SELECT DISTINCT admin_id FROM `{!_MYSQL_PREFIX!}_admins_mails` WHERE mail_template='%s' ORDER BY admin_id",
-               array($template), __FUNCTION__, __LINE__);
+       array($template), __FUNCTION__, __LINE__);
        if (SQL_NUMROWS($result) == 0) {
                // Create new entry (to all admins)
                SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_admins_mails` (admin_id, mail_template) VALUES (0, '%s')",
-                       array($template), __FUNCTION__, __LINE__);
+               array($template), __FUNCTION__, __LINE__);
        } else {
                // Load admin IDs...
                // @TODO This can be, somehow, rewritten
@@ -1642,29 +1611,29 @@ function SEND_ADMIN_EMAILS_PRO ($subj, $template, $content, $UID) {
                if ($aid == '-1') {
                        if (EXT_IS_ACTIVE('events')) {
                                // Add line to user events
-                               EVENTS_ADD_LINE($subj, $msg, $UID);
+                               EVENTS_ADD_LINE($subj, $message, $UID);
                        } else {
                                // Log error for debug
                                DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Extension 'events' missing: tpl=%s,subj=%s,UID=%s",
-                                       $template,
-                                       $subj,
-                                       $UID
+                               $template,
+                               $subj,
+                               $UID
                                ));
                        }
                } elseif ($aid == '0') {
                        // Select all email adresses
                        $result = SQL_QUERY("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` ORDER BY `id`",
-                               __FUNCTION__, __LINE__);
+                       __FUNCTION__, __LINE__);
                } else {
                        // If Admin-ID is not "to-all" select
                        $result = SQL_QUERY_ESC("SELECT email FROM `{!_MYSQL_PREFIX!}_admins` WHERE id IN (%s) ORDER BY `id`",
-                               array($aid), __FUNCTION__, __LINE__);
+                       array($aid), __FUNCTION__, __LINE__);
                }
        }
 
        // Load email addresses and send away
        while ($content = SQL_FETCHARRAY($result)) {
-               sendEmail($content['email'], $subj, $msg);
+               sendEmail($content['email'], $subj, $message);
        } // END - while
 
        // Free memory
@@ -1703,7 +1672,7 @@ function ADD_EMAIL_NAV ($PAGES, $offset, $show_form, $colspan, $return=false) {
        $SEP = ''; $TOP = '';
        if (!$show_form) {
                $TOP = " top2";
-               $SEP = "<tr><td colspan=\"".$colspan."\" class=\"seperator\">&nbsp;</td></tr>";
+               $SEP = "<tr><td colspan=\"" . $colspan."\" class=\"seperator\">&nbsp;</td></tr>";
        }
 
        $NAV = '';
@@ -1714,7 +1683,7 @@ function ADD_EMAIL_NAV ($PAGES, $offset, $show_form, $colspan, $return=false) {
                        $NAV .= "<strong>-";
                } else {
                        // Open anchor tag and add base URL
-                       $NAV .= "<a href=\"{!URL!}/modules.php?module=admin&amp;what=".$GLOBALS['what']."&amp;page=".$page."&amp;offset=".$offset;
+                       $NAV .= "<a href=\"{!URL!}/modules.php?module=admin&amp;what=" . getWhat()."&amp;page=" . $page."&amp;offset=" . $offset;
 
                        // Add userid when we shall show all mails from a single member
                        if ((REQUEST_ISSET_GET('uid')) && (bigintval(REQUEST_GET('uid')) > 0)) $NAV .= "&amp;uid=".bigintval(REQUEST_GET('uid'));
@@ -1761,7 +1730,7 @@ function extractHostnameFromUrl (&$script) {
        $url = constant('SERVER_URL');
 
        // Is this URL valid?
-       if (substr($script, 0, 7) == "http://") {
+       if (substr($script, 0, 7) == 'http://') {
                // Use the hostname from script URL as new hostname
                $url = substr($script, 7);
                $extract = explode('/', $url);
@@ -1770,12 +1739,12 @@ function extractHostnameFromUrl (&$script) {
        } // END - if
 
        // Extract host name
-       $host = str_replace("http://", '', $url);
+       $host = str_replace('http://', '', $url);
        if (ereg('/', $host)) $host = substr($host, 0, strpos($host, '/'));
 
        // Generate relative URL
-       //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
-       if (substr(strtolower($script), 0, 7) == "http://") {
+       //* DEBUG: */ print("SCRIPT=" . $script."<br />\n");
+       if (substr(strtolower($script), 0, 7) == 'http://') {
                // But only if http:// is in front!
                $script = substr($script, (strlen($url) + 7));
        } elseif (substr(strtolower($script), 0, 8) == "https://") {
@@ -1783,7 +1752,7 @@ function extractHostnameFromUrl (&$script) {
                $script = substr($script, (strlen($url) + 8));
        }
 
-       //* DEBUG: */ print("SCRIPT=".$script."<br />\n");
+       //* DEBUG: */ print("SCRIPT=" . $script."<br />\n");
        if (substr($script, 0, 1) == '/') $script = substr($script, 1);
 
        // Return host name
@@ -1799,17 +1768,17 @@ function sendGetRequest ($script) {
        $host = extractHostnameFromUrl($script);
 
        // Generate GET request header
-       $request  = "GET /" . trim($script) . " HTTP/1.1\r\n";
-       $request .= "Host: " . $host . "\r\n";
-       $request .= "Referer: " . constant('URL') . "/admin.php\r\n";
+       $request  = "GET /" . trim($script) . " HTTP/1.1" . getConfig('HTTP_EOL');
+       $request .= "Host: " . $host . getConfig('HTTP_EOL');
+       $request .= "Referer: " . constant('URL') . "/admin.php" . getConfig('HTTP_EOL');
        if (defined('FULL_VERSION')) {
-               $request .= "User-Agent: " . constant('TITLE') . '/' . constant('FULL_VERSION') . "\r\n";
+               $request .= "User-Agent: " . constant('TITLE') . '/' . constant('FULL_VERSION') . getConfig('HTTP_EOL');
        } else {
-               $request .= "User-Agent: " . constant('TITLE') . "/?.?.?\r\n";
+               $request .= "User-Agent: " . constant('TITLE') . "/?.?.?" . getConfig('HTTP_EOL');
        }
-       $request .= "Content-Type: text/plain\r\n";
-       $request .= "Cache-Control: no-cache\r\n";
-       $request .= "Connection: Close\r\n\r\n";
+       $request .= "Content-Type: text/plain" . getConfig('HTTP_EOL');
+       $request .= "Cache-Control: no-cache" . getConfig('HTTP_EOL');
+       $request .= "Connection: Close" . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
 
        // Send the raw request
        $response = sendRawRequest($host, $request);
@@ -1837,14 +1806,14 @@ function sendPostRequest ($script, $postData) {
        $data = http_build_query($postData, '','&');
 
        // Generate POST request header
-       $request  = "POST /" . trim($script) . " HTTP/1.1\r\n";
-       $request .= "Host: " . $host . "\r\n";
-       $request .= "Referer: " . constant('URL') . "/admin.php\r\n";
-       $request .= "User-Agent: " . constant('TITLE') . '/' . constant('FULL_VERSION') . "\r\n";
-       $request .= "Content-type: application/x-www-form-urlencoded\r\n";
-       $request .= "Content-length: " . strlen($data) . "\r\n";
-       $request .= "Cache-Control: no-cache\r\n";
-       $request .= "Connection: Close\r\n\r\n";
+       $request  = "POST /" . trim($script) . " HTTP/1.1" . getConfig('HTTP_EOL');
+       $request .= "Host: " . $host . getConfig('HTTP_EOL');
+       $request .= "Referer: " . constant('URL') . "/admin.php" . getConfig('HTTP_EOL');
+       $request .= "User-Agent: " . constant('TITLE') . '/' . constant('FULL_VERSION') . getConfig('HTTP_EOL');
+       $request .= "Content-type: application/x-www-form-urlencoded" . getConfig('HTTP_EOL');
+       $request .= "Content-length: " . strlen($data) . getConfig('HTTP_EOL');
+       $request .= "Cache-Control: no-cache" . getConfig('HTTP_EOL');
+       $request .= "Connection: Close" . getConfig('HTTP_EOL') . getConfig('HTTP_EOL');
        $request .= $data;
 
        // Send the raw request
@@ -1856,6 +1825,9 @@ function sendPostRequest ($script, $postData) {
 
 // Sends a raw request to another host
 function sendRawRequest ($host, $request) {
+       // Init errno and errdesc with 'all fine' values
+       $errno = 0; $errdesc = '';
+
        // Initialize array
        $response = array('', '', '');
 
@@ -1869,10 +1841,12 @@ function sendRawRequest ($host, $request) {
        } // END - if
 
        // Open connection
-       //* DEBUG: */ die("SCRIPT=".$script."<br />\n");
-       if ($useProxy) {
-               $fp = @fsockopen(COMPILE_CODE(getConfig('proxy_host')), getConfig('proxy_port'), $errno, $errdesc, 30);
+       //* DEBUG: */ die("SCRIPT=" . $script."<br />\n");
+       if ($useProxy === true) {
+               // Connect to host through proxy connection
+               $fp = @fsockopen(COMPILE_CODE(getConfig('proxy_host')), bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
        } else {
+               // Connect to host directly
                $fp = @fsockopen($host, 80, $errno, $errdesc, 30);
        }
 
@@ -1883,21 +1857,21 @@ function sendRawRequest ($host, $request) {
        } // END - if
 
        // Do we use proxy?
-       if ($useProxy) {
+       if ($useProxy === true) {
                // Generate CONNECT request header
-               $proxyTunnel  = "CONNECT ".$host.":80 HTTP/1.1\r\n";
-               $proxyTunnel .= "Host: ".$host."\r\n";
+               $proxyTunnel  = "CONNECT " . $host . ":80 HTTP/1.1" . getConfig('HTTP_EOL');
+               $proxyTunnel .= "Host: " . $host . getConfig('HTTP_EOL');
 
                // Use login data to proxy? (username at least!)
                if (getConfig('proxy_username') != '') {
                        // Add it as well
-                       $encodedAuth = base64_encode(COMPILE_CODE(getConfig('proxy_username')).getConfig('ENCRYPT_SEPERATOR').COMPILE_CODE(getConfig('proxy_password')));
-                       $proxyTunnel .= "Proxy-Authorization: Basic ".$encodedAuth."\r\n";
+                       $encodedAuth = base64_encode(COMPILE_CODE(getConfig('proxy_username')) . getConfig('ENCRYPT_SEPERATOR') . COMPILE_CODE(getConfig('proxy_password')));
+                       $proxyTunnel .= "Proxy-Authorization: Basic " . $encodedAuth . getConfig('HTTP_EOL');
                } // END - if
 
                // Add last new-line
-               $proxyTunnel .= "\r\n";
-               //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>".$proxyTunnel."</pre>");
+               $proxyTunnel .= getConfig('HTTP_EOL');
+               //* DEBUG: */ print("<strong>proxyTunnel=</strong><pre>" . $proxyTunnel."</pre>");
 
                // Write request
                fputs($fp, $proxyTunnel);
@@ -1947,7 +1921,7 @@ function sendRawRequest ($host, $request) {
        //* DEBUG: */ print("<strong>Response:</strong><pre>".print_r($response, true)."</pre>");
 
        // Proxy agent found?
-       if ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy)) {
+       if ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
                // Proxy header detected, so remove two lines
                array_shift($response);
                array_shift($response);
@@ -1989,13 +1963,13 @@ function isUrlValid ($URL, $compile=true) {
        //* DEBUG: */ echo $URL."<br />";
 
        // Compile some chars out...
-       if ($compile) $URL = compileUriCode($URL, false, false, false);
+       if ($compile === true) $URL = compileUriCode($URL, false, false, false);
        //* DEBUG: */ echo $URL."<br />";
 
        // Check for the extension filter
        if (EXT_IS_ACTIVE('filter')) {
                // Use the extension's filter set
-               return FILTER_isUrlValid($URL, false);
+               return FILTER_VALIDATE_URL($URL, false);
        } // END - if
 
        // If not installed, perform a simple test. Just make it sure there is always a http:// or
@@ -2012,8 +1986,8 @@ function generateMemberAdminActionLinks ($uid, $status = '') {
        $eval = "\$OUT = \"[&nbsp;";
 
        foreach ($TARGETS as $tar) {
-               $eval .= "<span class=\\\"admin_user_link\\\"><a href=\\\"{!URL!}/modules.php?module=admin&amp;what=".$tar."&amp;uid=".$uid."\\\" title=\\\"{--ADMIN_LINK_";
-               //* DEBUG: */ echo "*".$tar.'/'.$status."*<br />\n";
+               $eval .= "<span class=\\\"admin_user_link\\\"><a href=\\\"{!URL!}/modules.php?module=admin&amp;what=" . $tar."&amp;uid=" . $uid."\\\" title=\\\"{--ADMIN_LINK_";
+               //* DEBUG: */ echo "*" . $tar.'/' . $status."*<br />\n";
                if (($tar == "lock_user") && ($status == 'LOCKED')) {
                        // Locked accounts shall be unlocked
                        $eval .= "UNLOCK_USER";
@@ -2049,7 +2023,7 @@ function generateMemberEmailLink ($email, $table = 'admins') {
        if ((EXT_IS_ACTIVE('admins')) && ($table == 'admins')) {
                // Create email link for contacting admin in guest area
                $EMAIL = adminsCreateEmailLink($email);
-               } elseif ((EXT_IS_ACTIVE('user')) && (GET_EXT_VERSION('user') >= '0.3.3') && ($table == 'user_data')) {
+       } elseif ((EXT_IS_ACTIVE('user')) && (GET_EXT_VERSION('user') >= '0.3.3') && ($table == 'user_data')) {
                // Create email link for contacting a member within admin area (or later in other areas, too?)
                $EMAIL = USER_generateMemberEmailLink($email);
        } elseif ((EXT_IS_ACTIVE('sponsor')) && ($table == 'sponsor_data')) {
@@ -2093,12 +2067,12 @@ function generateHash ($plainText, $salt = '') {
                $a = time() + getConfig('_ADD') - 1;
 
                // Generate SHA1 sum from modula of number and the prime number
-               $sha1 = sha1(($a % getConfig('_PRIME')).$server.getConfig('ENCRYPT_SEPERATOR').$keys.getConfig('ENCRYPT_SEPERATOR').$data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR').$a);
-               //* DEBUG: */ echo "SHA1=".$sha1." (".strlen($sha1).")<br />";
+               $sha1 = sha1(($a % getConfig('_PRIME')) . $server.getConfig('ENCRYPT_SEPERATOR') . $keys.getConfig('ENCRYPT_SEPERATOR') . $data.getConfig('ENCRYPT_SEPERATOR').getConfig('DATE_KEY').getConfig('ENCRYPT_SEPERATOR') . $a);
+               //* DEBUG: */ echo "SHA1=" . $sha1." (".strlen($sha1).")<br />";
                $sha1 = scrambleString($sha1);
-               //* DEBUG: */ echo "Scrambled=".$sha1." (".strlen($sha1).")<br />";
+               //* DEBUG: */ echo "Scrambled=" . $sha1." (".strlen($sha1).")<br />";
                //* DEBUG: */ $sha1b = descrambleString($sha1);
-               //* DEBUG: */ echo "Descrambled=".$sha1b." (".strlen($sha1b).")<br />";
+               //* DEBUG: */ echo "Descrambled=" . $sha1b." (".strlen($sha1b).")<br />";
 
                // Generate the password salt string
                $salt = substr($sha1, 0, getConfig('salt_length'));
@@ -2110,7 +2084,7 @@ function generateHash ($plainText, $salt = '') {
        }
 
        // Return hash
-       return $salt.sha1($salt.$plainText);
+       return $salt.sha1($salt . $plainText);
 }
 
 // Scramble a string
@@ -2131,7 +2105,7 @@ function scrambleString($str) {
        }
 
        // Scramble string here
-       //* DEBUG: */ echo "***Original=".$str."***<br />";
+       //* DEBUG: */ echo "***Original=" . $str."***<br />";
        for ($idx = 0; $idx < strlen($str); $idx++) {
                // Get char on scrambled position
                $char = substr($str, $scrambleNums[$idx], 1);
@@ -2141,7 +2115,7 @@ function scrambleString($str) {
        } // END - for
 
        // Return scrambled string
-       //* DEBUG: */ echo "***Scrambled=".$scrambled."***<br />";
+       //* DEBUG: */ echo "***Scrambled=" . $scrambled."***<br />";
        return $scrambled;
 }
 
@@ -2158,14 +2132,14 @@ function descrambleString($str) {
 
        // Begin descrambling
        $orig = str_repeat(" ", 40);
-       //* DEBUG: */ echo "+++Scrambled=".$str."+++<br />";
+       //* DEBUG: */ echo "+++Scrambled=" . $str."+++<br />";
        for ($idx = 0; $idx < 40; $idx++) {
                $char = substr($str, $idx, 1);
                $orig = substr_replace($orig, $char, $scrambleNums[$idx], 1);
        } // END - for
 
        // Return scrambled string
-       //* DEBUG: */ echo "+++Original=".$orig."+++<br />";
+       //* DEBUG: */ echo "+++Original=" . $orig."+++<br />";
        return $orig;
 }
 
@@ -2212,20 +2186,20 @@ function generatePassString ($passHash) {
                                $mod = dechex(sqrt(($part2 - $part1) * getConfig('_PRIME') / pi()));
                        }
                        $mod = substr(round($mod), 0, 4);
-                       $mod = str_repeat('0', 4-strlen($mod)).$mod;
-                       //* DEBUG: */ echo "*".$start.'='.$mod."*<br />";
+                       $mod = str_repeat('0', 4-strlen($mod)) . $mod;
+                       //* DEBUG: */ echo "*" . $start.'=' . $mod."*<br />";
                        $start += 4;
                        $newHash .= $mod;
                } // END - for
 
-               //* DEBUG: */ print($passHash."<br />".$newHash." (".strlen($newHash).')');
+               //* DEBUG: */ print($passHash."<br />" . $newHash." (".strlen($newHash).')');
                $ret = generateHash($newHash, getConfig('master_salt'));
                //* DEBUG: */ print($ret."<br />\n");
        } else {
                // Hash it simple
-               //* DEBUG: */ echo "--".$passHash."--<br />\n";
+               //* DEBUG: */ echo "--" . $passHash."--<br />\n";
                $ret = md5($passHash);
-               //* DEBUG: */ echo "++".$ret."++<br />\n";
+               //* DEBUG: */ echo "++" . $ret."++<br />\n";
        }
 
        // Return result
@@ -2247,21 +2221,30 @@ function fixDeletedCookies ($cookies) {
 }
 
 // Output error messages in a fasioned way and die...
-function app_die ($F, $L, $msg) {
-       // Load header
-       loadIncludeOnce('inc/header.php');
+function app_die ($F, $L, $message) {
+       // Check if Script is already dieing and not let it kill itself another 1000 times
+       if (!isset($GLOBALS['app_died'])) {
+               // Make sure, that the script realy realy diese here and now
+               $GLOBALS['app_died'] = true;
 
-       // Prepare message for output
-       $msg = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $msg);
+               // Load header
+               loadIncludeOnce('inc/header.php');
 
-       // Load the message template
-       LOAD_TEMPLATE('admin_settings_saved', false, $msg);
+               // Rewrite message for output
+               $message = sprintf(getMessage('MXCHANGE_HAS_DIED'), basename($F), $L, $message);
 
-       // Load footer
-       loadIncludeOnce('inc/footer.php');
+               // Better log this message away
+               DEBUG_LOG($F, $L, $message);
 
-       // Exit explicitly
-       shutdown();
+               // Load the message template
+               LOAD_TEMPLATE('admin_settings_saved', false, $message);
+
+               // Load footer
+               loadIncludeOnce('inc/footer.php');
+       } else {
+               // Script tried to kill itself twice
+               debug_report_bug('Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $F . ', line=' . $L);
+       }
 }
 
 // Display parsing time and number of SQL queries in footer
@@ -2302,14 +2285,14 @@ function isBooleanConstantAndTrue ($constName) { // : Boolean
        // In cache?
        if (isset($GLOBALS['cache_array']['const'][$constName])) {
                // Use cache
-               //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-CACHE!<br />\n";
+               //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-CACHE!<br />\n";
                $res = ($GLOBALS['cache_array']['const'][$constName] === true);
        } else {
                // Check constant
-               //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-RESOLVE!<br />\n";
+               //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-RESOLVE!<br />\n";
                if (defined($constName)) {
                        // Found!
-                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): ".$constName."-FOUND!<br />\n";
+                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): " . $constName."-FOUND!<br />\n";
                        $res = (constant($constName) === true);
                } // END - if
 
@@ -2328,31 +2311,6 @@ function isApacheModuleLoaded ($apacheModule) {
        return (((function_exists('apache_get_modules')) && (in_array($apacheModule, apache_get_modules()))) || (!function_exists('apache_get_modules')));
 }
 
-// "Getter" for language strings
-// @TODO Rewrite all language constants to this function.
-function getMessage ($messageId) {
-       // Default is not found!
-       $return = '!'.$messageId.'!';
-
-       // Is the language string found?
-       if (isset($GLOBALS['msg'][strtolower($messageId)])) {
-               // Language array element found in small_letters
-               $return = $GLOBALS['msg'][$messageId];
-       } elseif (isset($GLOBALS['msg'][strtoupper($messageId)])) {
-               // @DEPRECATED Language array element found in BIG_LETTERS
-               $return = $GLOBALS['msg'][$messageId];
-       } elseif (defined($messageId)) {
-               // @DEPRECATED Deprecated constant found
-               $return = constant($messageId);
-       } else {
-               // Missing language constant
-               DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Missing message string %s detected.", $messageId));
-       }
-
-       // Return the string
-       return $return;
-}
-
 // Get current theme name
 function getCurrentTheme() {
        // The default theme is 'default'... ;-)
@@ -2374,7 +2332,7 @@ function getCurrentTheme() {
                        // Fix it to default
                        $ret = 'default';
                } // END - if
-       } elseif ((!isInstalled()) && ((isInstalling()) || ($GLOBALS['output_mode'] == true)) && ((REQUEST_ISSET_GET('theme')) || (REQUEST_ISSET_POST('theme')))) {
+       } elseif ((!isInstalled()) && ((isInstalling()) || (getOutputMode() == true)) && ((REQUEST_ISSET_GET('theme')) || (REQUEST_ISSET_POST('theme')))) {
                // Prepare FQFN for checking
                $theme = sprintf("%stheme/%s/theme.php", constant('PATH'), REQUEST_GET('theme'));
 
@@ -2425,7 +2383,7 @@ function getThemeId ($name) {
        } elseif (GET_EXT_VERSION('cache') != '0.1.8') {
                // Check if current theme is already imported or not
                $result = SQL_QUERY_ESC("SELECT `id` FROM `{!_MYSQL_PREFIX!}_themes` WHERE theme_path='%s' LIMIT 1",
-                       array($name), __FUNCTION__, __LINE__);
+               array($name), __FUNCTION__, __LINE__);
 
                // Entry found?
                if (SQL_NUMROWS($result) == 1) {
@@ -2443,6 +2401,12 @@ function getThemeId ($name) {
 
 // Generates an error code from given account status
 function generateErrorCodeFromUserStatus ($status) {
+       // @TODO The status should never be empty
+       if (empty($status)) {
+               // Something really bad happend here
+               debug_report_bug(__FUNCTION__ . ': status is empty.');
+       } // END - if
+
        // Default error code if unknown account status
        $errorCode = getCode('UNKNOWN_STATUS');
 
@@ -2465,9 +2429,9 @@ function generateErrorCodeFromUserStatus ($status) {
 // Function to search for the last modifified file
 function searchDirsRecursive ($dir, &$last_changed) {
        // Get dir as array
-       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=".$dir."<br />\n";
+       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):dir=" . $dir."<br />\n";
        // Does it match what we are looking for? (We skip a lot files already!)
-    // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
+       // RegexPattern to exclude  ., .., .revision,  .svn, debug.log or .cache in the filenames
        $excludePattern = '@(\.|\.\.|\.revision|\.svn|debug\.log|\.cache|config\.php)$@';
        $ds = getArrayFromDirectory($dir, '', true, false, $excludePattern);
        //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ds[]=".count($ds)."<br />\n";
@@ -2480,15 +2444,15 @@ function searchDirsRecursive ($dir, &$last_changed) {
                // Is it a file and readable?
                //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):FQFN={$FQFN}<br />\n";
                if (isDirectory($FQFN)) {
-                        // $FQFN is a directory so also crawl into this directory
+                       // $FQFN is a directory so also crawl into this directory
                        $newDir = $d;
                        if (!empty($dir)) $newDir = $dir . '/'. $d;
-                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: ".$newDir."<br />\n";
+                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):DESCENT: " . $newDir."<br />\n";
                        searchDirsRecursive($newDir, $last_changed);
                } elseif (isFileReadable($FQFN)) {
                        // $FQFN is a filename and no directory
                        $time = filemtime($FQFN);
-                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: ".$d." found. (".($last_changed['time'] - $time).")<br />\n";
+                       //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):File: " . $d." found. (".($last_changed['time'] - $time).")<br />\n";
                        if ($last_changed['time'] < $time) {
                                // This file is newer as the file before
                                //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>) - NEWER!<br />\n";
@@ -2506,25 +2470,40 @@ function getActualVersion ($type = 'Revision') {
 
        if (EXT_IS_ACTIVE('cache')) {
                // Check if REQUEST_GET('check_revision_data') is setted (switch for manually rewrite the .revision-File)
-               if (REQUEST_ISSET_GET('check_revision_data') && REQUEST_GET('check_revision_data') == 'yes') $new = true;
-               if (!isset($GLOBALS['cache_array']['revision'][$type])
-                       || count($GLOBALS['cache_array']['revision']) < 3
-                       || !$GLOBALS['cache_instance']->loadCacheFile('revision')) $new = true;
+               if (REQUEST_ISSET_GET('check_revision_data') && REQUEST_GET('check_revision_data') == 'yes') {
+                       // Force rebuild by URL parameter
+                       $new = true;
+               } elseif ((
+                       !isset($GLOBALS['cache_array']['revision'][$type])
+               ) || (
+                       count($GLOBALS['cache_array']['revision']) < 3
+               ) || (
+                       !$GLOBALS['cache_instance']->loadCacheFile('revision')
+               )) {
+                       // Out-dated cache
+                       $new = true;
+               } // END - if
 
                // Is the cache file outdated/invalid?
-               if ($new === true){
-                       $GLOBALS['cache_instance']->destroyCacheFile(); // @TODO isn't it better to do $GLOBALS['cache_instance']->destroyCacheFile('revision')?
+               if ($new === true) {
+                       // Reload the cache file
+                       $GLOBALS['cache_instance']->loadCacheFile('revision');
+
+                       // Destroy cache file
+                       $GLOBALS['cache_instance']->destroyCacheFile(false, true);
 
                        // @TODO shouldn't do the unset and the reloading $GLOBALS['cache_instance']->destroyCacheFile() Or a new methode like forceCacheReload('revision')?
                        unset($GLOBALS['cache_array']['revision']);
 
                        // Reload load_cach-revison.php
                        loadInclude('inc/loader/load_cache-revision.php');
+
+                       // Abort here
+                       return;
                } // END - if
 
                // Return found value
                return $GLOBALS['cache_array']['revision'][$type][0];
-
        } else {
                // Old Version without ext-cache active (deprecated ?)
 
@@ -2533,7 +2512,7 @@ function getActualVersion ($type = 'Revision') {
 
                // Check if REQUEST_GET('check_revision_data') is setted (switch for manually rewrite the .revision-File)
                if ((REQUEST_ISSET_GET('check_revision_data')) && (REQUEST_GET('check_revision_data') == 'yes')) {
-                       // Has changed!
+                       // Forced rebuild of .revision file
                        $new = true;
                } else {
                        // Check for revision file
@@ -2599,7 +2578,7 @@ function getArrayFromActualVersion () {
        // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
        foreach ($searchFor as $search) {
                // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
-               $res += preg_match('@\$'.$search.'(:|::) (.*) \$@U', $last_file, $t);
+               $res += preg_match('@\$' . $search.'(:|::) (.*) \$@U', $last_file, $t);
                // This trimms the search-result and puts it in the $akt_vers-return array
                if (isset($t[2])) $akt_vers[$search] = trim($t[2]);
        } // END - foreach
@@ -2609,9 +2588,9 @@ function getArrayFromActualVersion () {
 
        // at least 3 keyword-Tags are needed for propper values
        if ($res && $res >= 3
-               && isset($akt_vers['Revision']) && $akt_vers['Revision'] != ''
-               && isset($akt_vers['Date']) && $akt_vers['Date'] != ''
-               && isset($akt_vers['Tag']) && $akt_vers['Tag'] != '') {
+       && isset($akt_vers['Revision']) && $akt_vers['Revision'] != ''
+       && isset($akt_vers['Date']) && $akt_vers['Date'] != ''
+       && isset($akt_vers['Tag']) && $akt_vers['Tag'] != '') {
                // Prepare content witch need special treadment
 
                // Prepare timestamp for date
@@ -2650,7 +2629,7 @@ function debug_get_printable_backtrace () {
                if (!isset($trace['file'])) $trace['file'] = __FUNCTION__;
                if (!isset($trace['line'])) $trace['line'] = __LINE__;
                if (!isset($trace['args'])) $trace['args'] = array();
-               $backtrace .= "<li class=\"debug_list\"><span class=\"backtrace_file\">".basename($trace['file'])."</span>:".$trace['line'].", <span class=\"backtrace_function\">".$trace['function'].'('.count($trace['args']).")</span></li>\n";
+               $backtrace .= "<li class=\"debug_list\"><span class=\"backtrace_file\">".basename($trace['file'])."</span>:" . $trace['line'].", <span class=\"backtrace_function\">" . $trace['function'].'('.count($trace['args']).")</span></li>\n";
        } // END - foreach
 
        // Close it
@@ -2668,7 +2647,7 @@ function debug_report_bug ($message = '') {
        if (!empty($message)) {
                // Use and log it
                $debug = sprintf("Note: %s<br />\n",
-                       $message
+               $message
                );
 
                // @TODO Add a little more infos here
@@ -2676,9 +2655,9 @@ function debug_report_bug ($message = '') {
        } // END - if
 
        // Add output
-       $debug .= "Please report this bug at <a href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">bugs.mxchange.org</a>:<pre>";
+       $debug .= "Please report this bug at <a title=\"Direct link to the bug-tracker\" href=\"http://bugs.mxchange.org\" rel=\"external\" target=\"_blank\">bugs.mxchange.org</a> and include the logfile from <strong>inc/cache/debug.log</strong> in your report (you can now attach files):<pre>";
        $debug .= debug_get_printable_backtrace();
-       $debug .= "</pre>\nRequest-URI: ".$_SERVER['REQUEST_URI']."<br />\n";
+       $debug .= "</pre>\nRequest-URI: " . $_SERVER['REQUEST_URI']."<br />\n";
        $debug .= "Thank you for finding bugs.";
 
        // And abort here
@@ -2688,55 +2667,56 @@ function debug_report_bug ($message = '') {
 
 // Generates a ***weak*** seed (taken from de.php.net/mt_srand)
 function generateSeed () {
-       list($usec, $sec) = explode(" ", microtime());
-       return ((float)$sec + (float)$usec);
+       list($usec, $sec) = explode(' ', microtime());
+       $microTime = (((float)$sec + (float)$usec)) * 100000;
+       return $microTime;
 }
 
 // Converts a message code to a human-readable message
 function convertCodeToMessage ($code) {
-       $msg = '';
+       $message = '';
        switch ($code) {
-               case getCode('LOGOUT_DONE')      : $msg = getMessage('LOGOUT_DONE'); break;
-               case getCode('LOGOUT_FAILED')    : $msg = "<span class=\"guest_failed\">{--LOGOUT_FAILED--}</span>"; break;
-               case getCode('DATA_INVALID')     : $msg = getMessage('MAIL_DATA_INVALID'); break;
-               case getCode('POSSIBLE_INVALID') : $msg = getMessage('MAIL_POSSIBLE_INVALID'); break;
-               case getCode('ACCOUNT_LOCKED')   : $msg = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
-               case getCode('USER_404')         : $msg = getMessage('USER_NOT_FOUND'); break;
-               case getCode('STATS_404')        : $msg = getMessage('MAIL_STATS_404'); break;
-               case getCode('ALREADY_CONFIRMED'): $msg = getMessage('MAIL_ALREADY_CONFIRMED'); break;
+               case getCode('LOGOUT_DONE')      : $message = getMessage('LOGOUT_DONE'); break;
+               case getCode('LOGOUT_FAILED')    : $message = "<span class=\"guest_failed\">{--LOGOUT_FAILED--}</span>"; break;
+               case getCode('DATA_INVALID')     : $message = getMessage('MAIL_DATA_INVALID'); break;
+               case getCode('POSSIBLE_INVALID') : $message = getMessage('MAIL_POSSIBLE_INVALID'); break;
+               case getCode('ACCOUNT_LOCKED')   : $message = getMessage('MEMBER_ACCOUNT_LOCKED_UNC'); break;
+               case getCode('USER_404')         : $message = getMessage('USER_NOT_FOUND'); break;
+               case getCode('STATS_404')        : $message = getMessage('MAIL_STATS_404'); break;
+               case getCode('ALREADY_CONFIRMED'): $message = getMessage('MAIL_ALREADY_CONFIRMED'); break;
 
                case getCode('ERROR_MAILID'):
                        if (EXT_IS_ACTIVE($ext, true)) {
-                               $msg = getMessage('ERROR_CONFIRMING_MAIL');
+                               $message = getMessage('ERROR_CONFIRMING_MAIL');
                        } else {
-                               $msg = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
+                               $message = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'mailid');
                        }
                        break;
 
                case getCode('EXTENSION_PROBLEM'):
                        if (REQUEST_ISSET_GET('ext')) {
-                               $msg = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), REQUEST_GET('ext'));
+                               $message = generateExtensionInactiveNotInstalledMessage(REQUEST_GET('ext'));
                        } else {
-                               $msg = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
+                               $message = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
                        }
                        break;
 
-               case getCode('COOKIES_DISABLED') : $msg = getMessage('LOGIN_NO_COOKIES'); break;
-               case getCode('BEG_SAME_AS_OWN')  : $msg = getMessage('BEG_SAME_UID_AS_OWN'); break;
-               case getCode('LOGIN_FAILED')     : $msg = getMessage('LOGIN_FAILED_GENERAL'); break;
-               case getCode('MODULE_MEM_ONLY')  : $msg = sprintf(getMessage('MODULE_MEM_ONLY'), REQUEST_GET('mod')); break;
+               case getCode('COOKIES_DISABLED') : $message = getMessage('LOGIN_NO_COOKIES'); break;
+               case getCode('BEG_SAME_AS_OWN')  : $message = getMessage('BEG_SAME_UID_AS_OWN'); break;
+               case getCode('LOGIN_FAILED')     : $message = getMessage('LOGIN_FAILED_GENERAL'); break;
+               case getCode('MODULE_MEM_ONLY')  : $message = sprintf(getMessage('MODULE_MEM_ONLY'), REQUEST_GET('mod')); break;
 
                default:
                        // Missing/invalid code
-                       $msg = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
+                       $message = sprintf(getMessage('UNKNOWN_MAILID_CODE'), $code);
 
                        // Log it
-                       DEBUG_LOG(__FUNCTION__, __LINE__, $msg);
+                       DEBUG_LOG(__FUNCTION__, __LINE__, $message);
                        break;
        } // END - switch
 
        // Return the message
-       return $msg;
+       return $message;
 }
 
 // Generate a "link" for the given admin id (aid)
@@ -2754,7 +2734,7 @@ function generateAdminLink ($aid) {
                        // Is the extension there?
                        if (EXT_IS_ACTIVE('admins')) {
                                // Admin found
-                               $admin = "<a href=\"".adminsCreateEmailLink(getAdminEmail($aid))."\">".$login."</a>";
+                               $admin = "<a href=\"".adminsCreateEmailLink(getAdminEmail($aid))."\">" . $login."</a>";
                        } else {
                                // Extension not found
                                $admin = sprintf(getMessage('EXTENSION_PROBLEM_NOT_INSTALLED'), 'admins');
@@ -2772,7 +2752,7 @@ function generateAdminLink ($aid) {
 // Compile characters which are allowed in URLs
 function compileUriCode ($code, $simple=true) {
        // Compile constants
-       if (!$simple) $code = str_replace("{--", '".', str_replace("--}", '."', $code));
+       if (!$simple) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
 
        // Compile QUOT and other non-HTML codes
        $code = str_replace('{DOT}', '.',
@@ -2794,7 +2774,7 @@ function compileUriCode ($code, $simple=true) {
 // Function taken from user comments on www.php.net / function eregi()
 function isUrlValidSimple ($url) {
        // Prepare URL
-       $url = strip_tags(str_replace("\\", '', compileUriCode(urldecode($url))));
+       $url = strip_tags(str_replace("\\", '', COMPILE_CODE(urldecode($url))));
 
        // Allows http and https
        $http      = "(http|https)+(:\/\/)";
@@ -2811,44 +2791,42 @@ function isUrlValidSimple ($url) {
        // ... and the string after and including question character
        $getstring1 = "([\?/]([[:alnum:]][-\._%[:alnum:]]*(=)?([-\@\._:%[:alnum:]])+)(&([[:alnum:]]([-_%[:alnum:]])*(=)?([-\@\[\._:%[:alnum:]])+(\])*))*)?";
        // Pattern for URLs like http://url/dir/doc.html?var=value
-       $pattern['d1dpg1']  = $http.$domain1.$dir.$page.$getstring1;
-       $pattern['d2dpg1']  = $http.$domain2.$dir.$page.$getstring1;
-       $pattern['ipdpg1']  = $http.$ip.$dir.$page.$getstring1;
+       $pattern['d1dpg1']  = $http . $domain1 . $dir . $page . $getstring1;
+       $pattern['d2dpg1']  = $http . $domain2 . $dir . $page . $getstring1;
+       $pattern['ipdpg1']  = $http . $ip . $dir . $page . $getstring1;
        // Pattern for URLs like http://url/dir/?var=value
-       $pattern['d1dg1']  = $http.$domain1.$dir.'/'.$getstring1;
-       $pattern['d2dg1']  = $http.$domain2.$dir.'/'.$getstring1;
-       $pattern['ipdg1']  = $http.$ip.$dir.'/'.$getstring1;
+       $pattern['d1dg1']  = $http . $domain1 . $dir.'/' . $getstring1;
+       $pattern['d2dg1']  = $http . $domain2 . $dir.'/' . $getstring1;
+       $pattern['ipdg1']  = $http . $ip . $dir.'/' . $getstring1;
        // Pattern for URLs like http://url/dir/page.ext
-       $pattern['d1dp']  = $http.$domain1.$dir.$page;
-       $pattern['d1dp']  = $http.$domain2.$dir.$page;
-       $pattern['ipdp']  = $http.$ip.$dir.$page;
+       $pattern['d1dp']  = $http . $domain1 . $dir . $page;
+       $pattern['d1dp']  = $http . $domain2 . $dir . $page;
+       $pattern['ipdp']  = $http . $ip . $dir . $page;
        // Pattern for URLs like http://url/dir
-       $pattern['d1d']  = $http.$domain1.$dir;
-       $pattern['d2d']  = $http.$domain2.$dir;
-       $pattern['ipd']  = $http.$ip.$dir;
+       $pattern['d1d']  = $http . $domain1 . $dir;
+       $pattern['d2d']  = $http . $domain2 . $dir;
+       $pattern['ipd']  = $http . $ip . $dir;
        // Pattern for URLs like http://url/?var=value
-       $pattern['d1g1']  = $http.$domain1.'/'.$getstring1;
-       $pattern['d2g1']  = $http.$domain2.'/'.$getstring1;
-       $pattern['ipg1']  = $http.$ip.'/'.$getstring1;
+       $pattern['d1g1']  = $http . $domain1 . '/' . $getstring1;
+       $pattern['d2g1']  = $http . $domain2 . '/' . $getstring1;
+       $pattern['ipg1']  = $http . $ip . '/' . $getstring1;
        // Pattern for URLs like http://url?var=value
-       $pattern['d1g12']  = $http.$domain1.$getstring1;
-       $pattern['d2g12']  = $http.$domain2.$getstring1;
-       $pattern['ipg12']  = $http.$ip.$getstring1;
+       $pattern['d1g12']  = $http . $domain1 . $getstring1;
+       $pattern['d2g12']  = $http . $domain2 . $getstring1;
+       $pattern['ipg12']  = $http . $ip . $getstring1;
        // Test all patterns
        $reg = false;
-       foreach ($pattern as $key=>$pat) {
+       foreach ($pattern as $key => $pat) {
                // Debug regex?
-               if (defined('DEBUG_REGEX')) {
-                       $pat = str_replace("[:alnum:]", "0-9a-zA-Z", $pat);
-                       $pat = str_replace("[:alpha:]", "a-zA-Z", $pat);
-                       $pat = str_replace("[:digit:]", "0-9", $pat);
-                       $pat = str_replace('.', "\.", $pat);
-                       $pat = str_replace("@", "\@", $pat);
-                       echo $key."=&nbsp;".$pat."<br />";
-               }
+               if (isDebugRegExpressionEnabled()) {
+                       // @TODO Are these convertions still required?
+                       $pat = str_replace('.', "&#92;&#46;", $pat);
+                       $pat = str_replace('@', "&#92;&#64;", $pat);
+                       echo $key."=&nbsp;" . $pat . "<br />";
+               } // END - if
 
                // Check if expression matches
-               $reg = ($reg || preg_match(("^".$pat."^"), $url));
+               $reg = ($reg || preg_match(('^' . $pat.'^'), $url));
 
                // Does it match?
                if ($reg === true) break;
@@ -2869,16 +2847,16 @@ function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
 
        // Is the file there and read-/write-able?
        if ((isFileReadable($FQFN)) && (is_writeable($FQFN))) {
-               $search = "CFG: ".$comment;
-               $tmp = $FQFN.".tmp";
+               $search = 'CFG: ' . $comment;
+               $tmp = $FQFN . '.tmp';
 
                // Open the source file
-               $fp = fopen($FQFN, 'r') or OUTPUT_HTML("<strong>READ:</strong> ".$FQFN."<br />");
+               $fp = fopen($FQFN, 'r') or OUTPUT_HTML('<strong>READ:</strong> ' . $FQFN . "<br />\n");
 
                // Is the resource valid?
                if (is_resource($fp)) {
                        // Open temporary file
-                       $fp_tmp = fopen($tmp, 'w') or OUTPUT_HTML("<strong>WRITE:</strong> ".$tmp."<br />");
+                       $fp_tmp = fopen($tmp, 'w') or OUTPUT_HTML('<strong>WRITE:</strong> ' . $tmp . "<br />\n");
 
                        // Is the resource again valid?
                        if (is_resource($fp_tmp)) {
@@ -2891,7 +2869,7 @@ function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
                                        if ($next > -1) {
                                                if ($next === $seek) {
                                                        $next = -1;
-                                                       $line = $prefix . $DATA . $suffix."\n";
+                                                       $line = $prefix . $DATA . $suffix . "\n";
                                                } else {
                                                        $next++;
                                                }
@@ -2899,31 +2877,31 @@ function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
 
                                        // Write to temp file
                                        fputs($fp_tmp, $line);
-                               }
+                               } // END - while
 
                                // Close temp file
                                fclose($fp_tmp);
 
                                // Finished writing tmp file
                                $done = true;
-                       }
+                       } // END - if
 
                        // Close source file
                        fclose($fp);
 
-                       if (($done) && ($found)) {
+                       if (($done === true) && ($found === true)) {
                                // Copy back tmp file and delete tmp :-)
-                               copy($tmp, $FQFN);
-                               return unlink($tmp);
-                       } elseif (!$found) {
-                               OUTPUT_HTML("<strong>CHANGE:</strong> 404!");
+                               copyFileVerified($tmp, $FQFN, 0644);
+                               return removeFile($tmp);
+                       } elseif ($found === false) {
+                               OUTPUT_HTML('<strong>CHANGE:</strong> 404!');
                        } else {
-                               OUTPUT_HTML("<strong>TMP:</strong> UNDONE!");
+                               OUTPUT_HTML('<strong>TMP:</strong> UNDONE!');
                        }
                }
        } else {
                // File not found, not readable or writeable
-               OUTPUT_HTML("<strong>404:</strong> ".$FQFN."<br />");
+               OUTPUT_HTML('<strong>404:</strong> ' . $FQFN . '<br />');
        }
 
        // An error was detected!
@@ -2936,8 +2914,8 @@ function sendAdminNotification ($subject, $templateName, $content=array(), $uid
                SEND_ADMIN_EMAILS_PRO($subject, $templateName, $content, $uid);
        } else {
                // Send out out-dated way
-               $msg = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
-               SEND_ADMIN_EMAILS($subject, $msg);
+               $message = LOAD_EMAIL_TEMPLATE($templateName, $content, $uid);
+               SEND_ADMIN_EMAILS($subject, $message);
        }
 }
 
@@ -2950,7 +2928,7 @@ function DEBUG_LOG ($funcFile, $line, $message, $force=true) {
 
                // Log this message away
                $fp = fopen(constant('PATH')."inc/cache/debug.log", 'a') or app_die(__FUNCTION__, __LINE__, "Cannot write logfile debug.log!");
-               fwrite($fp, date("d.m.Y|H:i:s", time())."|".$GLOBALS['module']."|".basename($funcFile)."|".$line."|".strip_tags($message)."\n");
+               fwrite($fp, date("d.m.Y|H:i:s", time())."|" . getModule()."|".basename($funcFile)."|" . $line."|".strip_tags($message)."\n");
                fclose($fp);
        } // END - if
 }
@@ -3052,7 +3030,7 @@ function convertSelectionsToTimestamp (&$POST, &$DATA, &$id, &$skip) {
 
                        // Remove data from array
                        foreach (array('ye', 'mo', 'we', 'da', 'ho', 'mi', 'se') as $rem) {
-                               unset($POST[$test.'_'.$rem]);
+                               unset($POST[$test.'_' . $rem]);
                        } // END - foreach
 
                        // Skip adding
@@ -3096,14 +3074,14 @@ function HANDLE_LOGIN_FAILTURES ($accessLevel) {
        $OUT = '';
 
        // Is the session data set?
-       if ((isSessionVariableSet('mxchange_'.$accessLevel.'_failures')) && (isSessionVariableSet('mxchange_'.$accessLevel.'_last_fail'))) {
+       if ((isSessionVariableSet('mxchange_' . $accessLevel.'_failures')) && (isSessionVariableSet('mxchange_' . $accessLevel.'_last_fail'))) {
                // Ignore zero values
-               if (getSession('mxchange_'.$accessLevel.'_failures') > 0) {
+               if (getSession('mxchange_' . $accessLevel.'_failures') > 0) {
                        // Non-guest has login failures found, get both data and prepare it for template
                        //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):accessLevel={$accessLevel}<br />\n";
                        $content = array(
-                               'login_failures' => getSession('mxchange_'.$accessLevel.'_failures'),
-                               'last_failure'   => generateDateTime(getSession('mxchange_'.$accessLevel.'_last_fail'), '2')
+                               'login_failures' => getSession('mxchange_' . $accessLevel.'_failures'),
+                               'last_failure'   => generateDateTime(getSession('mxchange_' . $accessLevel.'_last_fail'), '2')
                        );
 
                        // Load template
@@ -3111,8 +3089,8 @@ function HANDLE_LOGIN_FAILTURES ($accessLevel) {
                } // END - if
 
                // Reset session data
-               setSession('mxchange_'.$accessLevel.'_failures', '');
-               setSession('mxchange_'.$accessLevel.'_last_fail', '');
+               setSession('mxchange_' . $accessLevel.'_failures', '');
+               setSession('mxchange_' . $accessLevel.'_last_fail', '');
        } // END - if
 
        // Return rendered content
@@ -3203,15 +3181,15 @@ function addNewBonusMail ($data, $mode = '', $output=true) {
        if (!empty($RECEIVER)) {
                // Add bonus mail to queue
                addBonusMailToQueue(
-                       $data['subject'],
-                       $data['text'],
-                       $RECEIVER,
-                       $data['points'],
-                       $data['seconds'],
-                       $data['url'],
-                       $data['cat'],
-                       $mode,
-                       $data['receiver']
+               $data['subject'],
+               $data['text'],
+               $RECEIVER,
+               $data['points'],
+               $data['seconds'],
+               $data['url'],
+               $data['cat'],
+               $mode,
+               $data['receiver']
                );
 
                // Mail inserted into bonus pool
@@ -3228,18 +3206,18 @@ function addNewBonusMail ($data, $mode = '', $output=true) {
 // Determines referal id and sets it
 function DETERMINE_REFID () {
        // Check if refid is set
-       if ((!empty($_GET['user'])) && (basename($_SERVER['PHP_SELF']) == "click.php")) {
+       if ((REQUEST_ISSET_GET('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
                // The variable user comes from the click-counter script click.php and we only accept this here
-               $GLOBALS['refid'] = bigintval($_GET['user']);
-       } elseif (!empty($_POST['refid'])) {
+               $GLOBALS['refid'] = bigintval(REQUEST_GET('user'));
+       } elseif (REQUEST_ISSET_POST('refid')) {
                // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
-               $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_POST['refid']));
-       } elseif (!empty($_GET['refid'])) {
+               $GLOBALS['refid'] = strip_tags(REQUEST_POST('refid'));
+       } elseif (REQUEST_ISSET_GET('refid')) {
                // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
-               $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['refid']));
-       } elseif (!empty($_GET['ref'])) {
+               $GLOBALS['refid'] = strip_tags(REQUEST_GET('refid'));
+       } elseif (REQUEST_ISSET_GET('ref')) {
                // Set refid=ref (the referal link uses such variable)
-               $GLOBALS['refid'] = SQL_ESCAPE(strip_tags($_GET['ref']));
+               $GLOBALS['refid'] = strip_tags(REQUEST_GET('ref'));
        } elseif ((isSessionVariableSet('refid')) && (getSession('refid') != 0)) {
                // Set session refid als global
                $GLOBALS['refid'] = bigintval(getSession('refid'));
@@ -3319,17 +3297,17 @@ function isUserIdSet () {
 // Handle message codes from URL
 function handleCodeMessage () {
        if (REQUEST_ISSET_GET('msg')) {
-               // Default extension is "unknown"
+               // Default extension is 'unknown'
                $ext = 'unknown';
 
                // Is extension given?
                if (REQUEST_ISSET_GET('ext')) $ext = REQUEST_GET('ext');
 
                // Convert the 'msg' parameter from URL to a human-readable message
-               $msg = convertCodeToMessage(REQUEST_GET('msg'));
+               $message = convertCodeToMessage(REQUEST_GET('msg'));
 
                // Load message template
-               LOAD_TEMPLATE('message', false, $msg);
+               LOAD_TEMPLATE('message', false, $message);
        } // END - if
 }
 
@@ -3355,6 +3333,74 @@ function isExtraTitleSet () {
        return ((isset($GLOBALS['extra_title'])) && (!empty($GLOBALS['extra_title'])));
 }
 
+// Generates a 'extension foo inactive' message
+function generateExtensionInactiveMessage ($ext_name) {
+       // Is the extension empty?
+       if (empty($ext_name)) {
+               // This should not happen
+               trigger_error(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
+       } // END - if
+
+       // Default message
+       $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
+
+       // Is an admin logged in?
+       if (IS_ADMIN()) {
+               // Then output admin message
+               $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_INACTIVE'), $ext_name);
+       } // END - if
+
+       // Return prepared message
+       return $message;
+}
+
+// Generates a 'extension foo not installed' message
+function generateExtensionNotInstalledMessage ($ext_name) {
+       // Is the extension empty?
+       if (empty($ext_name)) {
+               // This should not happen
+               trigger_error(__FUNCTION__ . ': Parameter ext is empty. This should not happen.');
+       } // END - if
+
+       // Default message
+       $message = sprintf(getMessage('EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
+
+       // Is an admin logged in?
+       if (IS_ADMIN()) {
+               // Then output admin message
+               $message = sprintf(getMessage('ADMIN_EXTENSION_PROBLEM_EXT_NOT_INSTALLED'), $ext_name);
+       } // END - if
+
+       // Return prepared message
+       return $message;
+}
+
+// Generates a message depending on if the extension is not installed or not
+// just activated
+function generateExtensionInactiveNotInstalledMessage ($ext_name) {
+       // Init message
+       $message = '';
+
+       // Is the extension not installed or just deactivated?
+       switch (isExtensionInstalled($ext_name)) {
+               case true; // Deactivated!
+                       $message = generateExtensionInactiveMessage($ext_name);
+                       break;
+
+               case false; // Not installed!
+                       $message = generateExtensionNotInstalledMessage($ext_name);
+                       break;
+
+               default: // Should not happen!
+                       DEBUG_LOG(__FUNCTION__, __LINE__, sprintf("Invalid state of extension %s detected.", $ext_name));
+                       $message = sprintf("Invalid state of extension %s detected.", $ext_name);
+                       break;
+       } // END - switch
+
+       // Return the message
+       return $message;
+}
+
 //////////////////////////////////////////////////
 // AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
 //////////////////////////////////////////////////