Required fix for NULL vs. 0 in user_points
[mailer.git] / inc / functions.php
index ab3c7099daaa2c95dec202d83edaf329e5bbb5be..333de57fec72d155269ce177afa46889ae7a78b7 100644 (file)
@@ -6,19 +6,17 @@
  * -------------------------------------------------------------------- *
  * File              : functions.php                                    *
  * -------------------------------------------------------------------- *
- * Short description : Many non-MySQL functions (also file access)      *
+ * Short description : Many non-database functions (also file access)   *
  * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Viele Nicht-MySQL-Funktionen (auch Dateizugriff) *
+ * Kurzbeschreibung  : Viele Nicht-Datenbank-Funktionen                 *
  * -------------------------------------------------------------------- *
  * $Revision::                                                        $ *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -42,183 +40,6 @@ if (!defined('__SECURITY')) {
        die();
 } // END - if
 
-// Output HTML code directly or 'render' it. You addionally switch the new-line character off
-function outputHtml ($htmlCode, $newLine = true) {
-       // Init output
-       if (!isset($GLOBALS['output'])) {
-               $GLOBALS['output'] = '';
-       } // END - if
-
-       // Do we have HTML-Code here?
-       if (!empty($htmlCode)) {
-               // 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 (getPhpCaching() == 'on') {
-                                       // Output into PHP's internal buffer
-                                       outputRawCode($htmlCode);
-
-                                       // That's why you don't need any \n at the end of your HTML code... :-)
-                                       if ($newLine === true) print("\n");
-                               } else {
-                                       // Render mode for old or lame servers...
-                                       $GLOBALS['output'] .= $htmlCode;
-
-                                       // That's why you don't need any \n at the end of your HTML code... :-)
-                                       if ($newLine === true) $GLOBALS['output'] .= "\n";
-                               }
-                               break;
-
-                       case 'direct':
-                               // If we are switching from render to direct output rendered code
-                               if ((!empty($GLOBALS['output'])) && (getPhpCaching() != 'on')) { outputRawCode($GLOBALS['output']); $GLOBALS['output'] = ''; }
-
-                               // The same as above... ^
-                               outputRawCode($htmlCode);
-                               if ($newLine === true) print("\n");
-                               break;
-
-                       default:
-                               // Huh, something goes wrong or maybe you have edited config.php ???
-                               debug_report_bug(__FUNCTION__, __LINE__, '<strong>{--FATAL_ERROR--}:</strong> {--LANG_NO_RENDER_DIRECT--}');
-                               break;
-               } // END - switch
-       } elseif ((getPhpCaching() == 'on') && ((!isset($GLOBALS['header'])) || (count($GLOBALS['header']) == 0))) {
-               // Output cached HTML code
-               $GLOBALS['output'] = ob_get_contents();
-
-               // Clear output buffer for later output if output is found
-               if (!empty($GLOBALS['output'])) {
-                       clearOutputBuffer();
-               } // END - if
-
-               // Send all HTTP headers
-               sendHttpHeaders();
-
-               // Compile and run finished rendered HTML code
-               compileFinalOutput();
-
-               // Output code here, DO NOT REMOVE! ;-)
-               outputRawCode($GLOBALS['output']);
-       } elseif ((getConfig('OUTPUT_MODE') == 'render') && (!empty($GLOBALS['output']))) {
-               // Send all HTTP headers
-               sendHttpHeaders();
-
-               // Compile and run finished rendered HTML code
-               compileFinalOutput();
-
-               // Output code here, DO NOT REMOVE! ;-)
-               outputRawCode($GLOBALS['output']);
-       } else {
-               // And flush all headers
-               flushHeaders();
-       }
-}
-
-// Sends out all headers required for HTTP/1.1 reply
-function sendHttpHeaders () {
-       // Used later
-       $now = gmdate('D, d M Y H:i:s') . ' GMT';
-
-       // Send HTTP header
-       sendHeader('HTTP/1.1 ' . getHttpStatus());
-
-       // General headers for no caching
-       sendHeader('Expires: ' . $now); // RFC2616 - Section 14.21
-       sendHeader('Last-Modified: ' . $now);
-       sendHeader('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
-       sendHeader('Pragma: no-cache'); // HTTP/1.0
-       sendHeader('Connection: Close');
-       sendHeader('Content-Type: ' . getContentType() . '; charset=UTF-8');
-       sendHeader('Content-Language: ' . getLanguage());
-}
-
-// Compiles the final output
-function compileFinalOutput () {
-       // Add page header and footer
-       addPageHeaderFooter();
-
-       // Do the final compilation
-       $GLOBALS['output'] = doFinalCompilation($GLOBALS['output']);
-
-       // Extension 'rewrite' installed?
-       if ((isExtensionActive('rewrite')) && (getOutputMode() != 1)) {
-               $GLOBALS['output'] = rewriteLinksInCode($GLOBALS['output']);
-       } // END - if
-
-       // Compress it?
-       if (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('gzip', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
-               // Compress it for HTTP gzip
-               $GLOBALS['output'] = gzencode($GLOBALS['output'], 9, true);
-
-               // Add header
-               sendHeader('Content-Encoding: gzip');
-       } elseif (!empty($_SERVER['HTTP_ACCEPT_ENCODING']) && (strpos('deflate', $_SERVER['HTTP_ACCEPT_ENCODING']) !== null)) {
-               // Compress it for HTTP deflate
-               $GLOBALS['output'] = gzcompress($GLOBALS['output'], 9);
-
-               // Add header
-               sendHeader('Content-Encoding: deflate');
-       }
-
-       // Add final length
-       sendHeader('Content-Length: ' . strlen($GLOBALS['output']));
-
-       // Flush all headers
-       flushHeaders();
-}
-
-// Main compilation loop
-function doFinalCompilation ($code, $insertComments = true) {
-       // Insert comments? (Only valid with HTML templates, of course)
-       enableTemplateHtml($insertComments);
-
-       // Init counter
-       $cnt = 0;
-
-       // Compile all out
-       while (((strpos($code, '{--') !== false) || (strpos($code, '{DQUOTE}') !== false) || (strpos($code, '{?') !== false) || (strpos($code, '{%') !== false)) && ($cnt < 4)) {
-               // Init common variables
-               $content = array();
-               $newContent = '';
-
-               // Compile it
-               //* DEBUG: */ debugOutput('<pre>'.htmlentities($code).'</pre>');
-               $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($code))) . '";';
-               //* DEBUG: */ if ($insertComments) die('<pre>'.linenumberCode($eval).'</pre>');
-               eval($eval);
-               //* DEBUG: */ die('<pre>'.htmlentities($newContent).'</pre>');
-
-               // Was that eval okay?
-               if (empty($newContent)) {
-                       // Something went wrong!
-                       debug_report_bug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', false);
-               } // END - if
-
-               // Use it again
-               $code = $newContent;
-
-               // Count round
-               $cnt++;
-       } // END - while
-
-       // Return the compiled code
-       return $code;
-}
-
-// Output the raw HTML code
-function outputRawCode ($htmlCode) {
-       // Output stripped HTML code to avoid broken JavaScript code, etc.
-       print(str_replace('{BACK}', "\\", $htmlCode));
-
-       // Flush the output if only getPhpCaching() is not 'on'
-       if (getPhpCaching() != 'on') {
-               // Flush it
-               flush();
-       } // END - if
-}
-
 // Init fatal message array
 function initFatalMessages () {
        $GLOBALS['fatal_messages'] = array();
@@ -248,7 +69,7 @@ function addFatalMessage ($F, $L, $message, $extra = '') {
 
 // Getter for total fatal message count
 function getTotalFatalErrors () {
-       // Init coun
+       // Init count
        $count = '0';
 
        // Do we have at least the first entry?
@@ -261,326 +82,52 @@ function getTotalFatalErrors () {
        return $count;
 }
 
-// Load a template file and return it's content (only it's name; do not use ' or ")
-function loadTemplate ($template, $return = false, $content = array()) {
-       // @TODO Remove this sanity-check if all is fine
-       if (!is_bool($return)) debug_report_bug(__FUNCTION__, __LINE__, 'return is not bool (' . gettype($return) . ')');
-
-       // @TODO Try to rewrite all $DATA to $content
-       global $DATA;
-
-       // Do we have cache?
-       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
-               // Evaluate the cache
-               eval(readTemplateCache($template));
-       } elseif (!isset($GLOBALS['template_eval'][$template])) {
-               // Make all template names lowercase
-               $template = strtolower($template);
-
-               // Init some data
-               $ret = '';
-               if (empty($GLOBALS['refid'])) $GLOBALS['refid'] = '0';
-
-               // Base directory
-               $basePath = sprintf("%stemplates/%s/html/", getConfig('PATH'), getLanguage());
-               $extraPath = detectExtraTemplatePath($template);;
-
-               ////////////////////////
-               // Generate file name //
-               ////////////////////////
-               $FQFN = $basePath . $extraPath . $template . '.tpl';
-
-               // Does the special template exists?
-               if (!isFileReadable($FQFN)) {
-                       // Reset to default template
-                       $FQFN = $basePath . $template . '.tpl';
-               } // END - if
-
-               // Now does the final template exists?
-               if (isFileReadable($FQFN)) {
-                       // Count the template load
-                       incrementConfigEntry('num_templates');
-
-                       // The local file does exists so we load it. :)
-                       $GLOBALS['tpl_content'] = readFromFile($FQFN);
-
-                       // Do we have to compile the code?
-                       $ret = '';
-                       if ((strpos($GLOBALS['tpl_content'], '$') !== false) || (strpos($GLOBALS['tpl_content'], '{--') !== false) || (strpos($GLOBALS['tpl_content'], '{?') !== false) || (strpos($GLOBALS['tpl_content'], '{%') !== false)) {
-                               // Normal HTML output?
-                               if (getOutputMode() == '0') {
-                                       // Add surrounding HTML comments to help finding bugs faster
-                                       $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
-
-                                       // Prepare eval() command
-                                       $eval = '$ret = "' . compileCode(escapeQuotes($ret)) . '";';
-                               } elseif (substr($template, 0, 3) == 'js_') {
-                                       // JavaScripts don't like entities and timings
-                                       $eval = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['tpl_content'])) . '");';
-                               } else {
-                                       // Prepare eval() command, other output doesn't like entities, maybe
-                                       $eval = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
-                               }
-                       } else {
-                               // Add surrounding HTML comments to help finding bugs faster
-                               $ret = '<!-- Template ' . $template . " - Start -->\n" . $GLOBALS['tpl_content'] . '<!-- Template ' . $template . " - End -->\n";
-                               $eval = '$ret = "' . compileRawCode(escapeQuotes($ret)) . '";';
-                       } // END - if
-
-                       // Cache the eval() command here
-                       $GLOBALS['template_eval'][$template] = $eval;
-               } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
-                       // Only admins shall see this warning or when installation mode is active
-                       $ret = '<div class="para">
-       <span class="guest_failed">{--TEMPLATE_404--}</span>
-</div>
-<div class="para">
-       (' . $template . ')
-</div>
-<div class="para">
-       {--TEMPLATE_CONTENT--}
-       <pre>' . print_r($content, true) . '</pre>
-       {--TEMPLATE_DATA--}
-       <pre>' . print_r($DATA, true) . '</pre>
-</div>';
-               } else {
-                       // No file!
-                       $GLOBALS['template_eval'][$template] = '404';
-               }
-       }
-
-       // Code set?
-       if ((isset($GLOBALS['template_eval'][$template])) && ($GLOBALS['template_eval'][$template] != '404')) {
-               // Eval the code
-               eval($GLOBALS['template_eval'][$template]);
-       } // END - if
-
-       // Do we have some content to output or return?
-       if (!empty($ret)) {
-               // Not empty so let's put it out! ;)
-               if ($return === true) {
-                       // Return the HTML code
-                       return $ret;
-               } else {
-                       // Output directly
-                       outputHtml($ret);
-               }
-       } elseif (isDebugModeEnabled()) {
-               // Warning, empty output!
-               return 'E:' . $template . ',content=<pre>' . print_r($content, true) . '</pre>';
-       }
-}
-
-// Detects the extra template path from given template name
-function detectExtraTemplatePath ($template) {
-       // Default is empty
-       $extraPath = '';
-
-       // Do we have cache?
-       if (!isset($GLOBALS['extra_path'][$template])) {
-               // Check for admin/guest/member/etc. templates
-               if (substr($template, 0, 6) == 'admin_') {
-                       // Admin template found
-                       $extraPath = 'admin/';
-               } elseif (substr($template, 0, 6) == 'guest_') {
-                       // Guest template found
-                       $extraPath = 'guest/';
-               } elseif (substr($template, 0, 7) == 'member_') {
-                       // Member template found
-                       $extraPath = 'member/';
-               } elseif (substr($template, 0, 7) == 'select_') {
-                       // Selection template found
-                       $extraPath = 'select/';
-               } elseif (substr($template, 0, 8) == 'install_') {
-                       // Installation template found
-                       $extraPath = 'install/';
-               } elseif (substr($template, 0, 4) == 'ext_') {
-                       // Extension template found
-                       $extraPath = 'ext/';
-               } elseif (substr($template, 0, 3) == 'la_') {
-                       // 'Logical-area' template found
-                       $extraPath = 'la/';
-               } elseif (substr($template, 0, 3) == 'js_') {
-                       // JavaScript template found
-                       $extraPath = 'js/';
-               } elseif (substr($template, 0, 5) == 'menu_') {
-                       // Menu template found
-                       $extraPath = 'menu/';
-               } else {
-                       // Test for extension
-                       $test = substr($template, 0, strpos($template, '_'));
-
-                       // Probe for valid extension name
-                       if (isExtensionNameValid($test)) {
-                               // Set extra path to extension's name
-                               $extraPath = $test . '/';
-                       } // END - if
-               }
-
-               // Store it in cache
-               $GLOBALS['extra_path'][$template] = $extraPath;
-       } // END - if
-
-       // Return result
-       return $GLOBALS['extra_path'][$template];
-}
-
-// Loads an email template and compiles it
-function loadEmailTemplate ($template, $content = array(), $userid = '0') {
-       global $DATA;
-
-       // Make sure all template names are lowercase!
-       $template = strtolower($template);
-
-       // Is content an array?
-       if (is_array($content)) {
-               // Add expiration to array
-               if ((isConfigEntrySet('auto_purge')) && (getConfig('auto_purge') == '0')) {
-                       // Will never expire!
-                       $content['expiration'] = getMessage('MAIL_WILL_NEVER_EXPIRE');
-               } elseif (isConfigEntrySet('auto_purge')) {
-                       // Create nice date string
-                       $content['expiration'] = createFancyTime(getConfig('auto_purge'));
-               } else {
-                       // Missing entry
-                       $content['expiration'] = getMessage('MAIL_NO_CONFIG_AUTO_PURGE');
-               }
-       } // END - if
-
-       // Load user's data
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "UID={$userid},template={$template},content[]=".gettype($content));
-       if (($userid > 0) && (is_array($content))) {
-               // If nickname extension is installed, fetch nickname as well
-               if ((isExtensionActive('nickname')) && (isNicknameUsed($userid))) {
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NICKNAME!<br />");
-                       // Load by nickname
-                       fetchUserData($userid, 'nickname');
-               } else {
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "NO-NICK!<br />");
-                       /// Load by userid
-                       fetchUserData($userid);
-               }
-
-               // Merge data if valid
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - PRE<br />");
-               if (isUserDataValid()) {
-                       $content = merge_array($content, getUserDataArray());
-               } // END - if
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "content()=".count($content)." - AFTER<br />");
-       } // END - if
-
-       // Overwrite email from data if present
-       if (isset($content['email'])) $email = $content['email'];
-
-       // Store email for some functions in global $DATA array
-       // @TODO Do only use $content, not $DATA or raw variables
-       $DATA['email'] = $email;
-
-       // Base directory
-       $basePath = sprintf("%stemplates/%s/emails/", getConfig('PATH'), getLanguage());
-
-       // Detect extra path
-       $extraPath = detectExtraTemplatePath($template);
-
-       // Generate full FQFN
-       $FQFN = $basePath . $extraPath . $template . '.tpl';
-
-       // Does the special template exists?
-       if (!isFileReadable($FQFN)) {
-               // Reset to default template
-               $FQFN = $basePath . $template . '.tpl';
-       } // END - if
-
-       // Now does the final template exists?
-       $newContent = '';
-       if (isFileReadable($FQFN)) {
-               // The local file does exists so we load it. :)
-               $GLOBALS['tpl_content'] = readFromFile($FQFN);
-
-               // Run code
-               $GLOBALS['tpl_content'] = '$newContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['tpl_content'])) . '");';
-               eval($GLOBALS['tpl_content']);
-       } elseif (!empty($template)) {
-               // Template file not found!
-               $newContent = '<div class="para">
-       {--TEMPLATE_404--}: ' . $template . '
-</div>
-<div class="para">
-       {--TEMPLATE_CONTENT--}
-       <pre>' . print_r($content, true) . '</pre>
-       {--TEMPLATE_DATA--}
-       <pre>' . print_r($DATA, true) . '</pre>
-</div>';
-
-               // Debug mode not active? Then remove the HTML tags
-               if (!isDebugModeEnabled()) $newContent = secureString($newContent);
-       } else {
-               // No template name supplied!
-               $newContent = getMessage('NO_TEMPLATE_SUPPLIED');
-       }
-
-       // Is there some content?
-       if (empty($newContent)) {
-               // Compiling failed
-               $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['tpl_content'];
-
-               // 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
-
-       // Remove content and data
-       unset($content);
-       unset($DATA);
-
-       // Return content
-       return $newContent;
-}
-
 // Send mail out to an email address
 function sendEmail ($toEmail, $subject, $message, $isHtml = 'N', $mailHeader = '') {
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "TO={$toEmail},SUBJECT={$subject}<br />");
-
-       // Compile subject line (for POINTS constant etc.)
-       eval('$subject = decodeEntities("' . compileRawCode(escapeQuotes($subject)) . '");');
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'toEmail=' . $toEmail . ',subject=' . $subject . ',isHtml=' . $isHtml);
+       // Empty parameters should be avoided, so we need to find them
+       if (empty($isHtml)) {
+               // isHtml is empty
+               debug_report_bug(__FUNCTION__, __LINE__, 'isHtml is empty.');
+       } // END - if
 
        // Set from header
        if ((!isInStringIgnoreCase('@', $toEmail)) && ($toEmail > 0)) {
-               // Value detected, is the message extension installed?
-               // @TODO Extension 'msg' does not exist
-               if (isExtensionActive('msg')) {
-                       ADD_MESSAGE_TO_BOX($toEmail, $subject, $message, $isHtml);
-                       return;
+               // Does the user exist?
+               if ((isExtensionActive('user')) && (fetchUserData($toEmail))) {
+                       // Get the email
+                       $toEmail = getUserData('email');
                } else {
-                       // Does the user exist?
-                       if (fetchUserData($toEmail)) {
-                               // Get the email
-                               $toEmail = getUserData('email');
-                       } else {
-                               // Set webmaster
-                               $toEmail = getConfig('WEBMASTER');
-                       }
+                       // Set webmaster
+                       $toEmail = getWebmaster();
                }
        } elseif ($toEmail == '0') {
                // Is the webmaster!
-               $toEmail = getConfig('WEBMASTER');
+               $toEmail = getWebmaster();
        }
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "TO={$toEmail}<br />");
 
        // Check for PHPMailer or debug-mode
        if ((!checkPhpMailerUsage()) || (isDebugModeEnabled())) {
+               // Prefix is '' for text mails
+               $prefix = '';
+
+               // Is HTML?
+               if ($isHtml == 'Y') {
+                       // Set prefix
+                       $prefix = 'html_';
+               } // END - if
+
                // Not in PHPMailer-Mode
                if (empty($mailHeader)) {
                        // Load email header template
-                       $mailHeader = loadEmailTemplate('header');
+                       $mailHeader = loadEmailTemplate($prefix . 'header');
                } else {
                        // Append header
-                       $mailHeader .= loadEmailTemplate('header');
+                       $mailHeader .= loadEmailTemplate($prefix . 'header');
                }
        } // END - if
 
-       // Fix HTML parameter (default is no!)
-       if (empty($isHtml)) $isHtml = 'N';
-
        // Debug mode enabled?
        if (isDebugModeEnabled()) {
                // In debug mode we want to display the mail instead of sending it away so we can debug this part
@@ -593,15 +140,12 @@ Message : ' . htmlentities(utf8_decode($message)) . '
 
                // This is always fine
                return true;
-       } elseif (($isHtml == 'Y') && (isExtensionActive('html_mail'))) {
-               // Send mail as HTML away
-               return sendHtmlEmail($toEmail, $subject, $message, $mailHeader);
        } elseif (!empty($toEmail)) {
                // Send Mail away
                return sendRawEmail($toEmail, $subject, $message, $mailHeader);
        } elseif ($isHtml != 'Y') {
-               // Problem found!
-               return sendRawEmail(getConfig('WEBMASTER'), '[PROBLEM:]' . $subject, $message, $mailHeader);
+               // Problem detected while sending a mail, forward it to admin
+               return sendRawEmail(getWebmaster(), '[PROBLEM:]' . $subject, $message, $mailHeader);
        }
 
        // Why did we end up here? This should not happen
@@ -616,12 +160,17 @@ function checkPhpMailerUsage() {
 }
 
 // Send out a raw email with PHPMailer class or legacy mail() command
-function sendRawEmail ($toEmail, $subject, $message, $from) {
-       // Just compile all again, to put out all configs, etc.
-       eval('$toEmail = decodeEntities("' . doFinalCompilation(compileRawCode(escapeQuotes($toEmail)), false) . '");');
-       eval('$subject = decodeEntities("' . doFinalCompilation(compileRawCode(escapeQuotes($subject)), false) . '");');
-       eval('$message = decodeEntities("' . doFinalCompilation(compileRawCode(escapeQuotes($message)), false) . '");');
-       eval('$from    = decodeEntities("' . doFinalCompilation(compileRawCode(escapeQuotes($from))   , false) . '");');
+function sendRawEmail ($toEmail, $subject, $message, $headers) {
+       // Just compile all to put out all configs, etc.
+       $eval  = '$toEmail = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($toEmail), false)) . '"); ';
+       $eval .= '$subject = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($subject), false)) . '"); ';
+       $eval .= '$headers = decodeEntities("' . escapeQuotes(doFinalCompilation(compileRawCode($headers), false)) . '"); ';
+
+       // Do not decode entities in the message because we also send HTML mails through this function
+       $eval .= '$message = "' . escapeQuotes(doFinalCompilation(compileRawCode($message), false)) . '";';
+
+       // Run the final eval() command
+       eval($eval);
 
        // Shall we use PHPMailer class or legacy mode?
        if (checkPhpMailerUsage()) {
@@ -636,7 +185,7 @@ function sendRawEmail ($toEmail, $subject, $message, $from) {
                $mail->CharSet = 'UTF-8';
 
                // Path for PHPMailer
-               $mail->PluginDir  = sprintf("%sinc/phpmailer/", getConfig('PATH'));
+               $mail->PluginDir  = sprintf("%sinc/phpmailer/", getPath());
 
                $mail->IsSMTP();
                $mail->SMTPAuth   = true;
@@ -644,12 +193,12 @@ function sendRawEmail ($toEmail, $subject, $message, $from) {
                $mail->Port       = 25;
                $mail->Username   = getConfig('SMTP_USER');
                $mail->Password   = getConfig('SMTP_PASSWORD');
-               if (empty($from)) {
-                       $mail->From = getConfig('WEBMASTER');
+               if (empty($headers)) {
+                       $mail->From = getWebmaster();
                } else {
-                       $mail->From = $from;
+                       $mail->From = $headers;
                }
-               $mail->FromName   = getConfig('MAIN_TITLE');
+               $mail->FromName   = getMainTitle();
                $mail->Subject    = $subject;
                if ((isExtensionActive('html_mail')) && (secureString($message) != $message)) {
                        $mail->Body       = $message;
@@ -659,10 +208,12 @@ function sendRawEmail ($toEmail, $subject, $message, $from) {
                } else {
                        $mail->Body       = decodeEntities($message);
                }
+
                $mail->AddAddress($toEmail, '');
-               $mail->AddReplyTo(getConfig('WEBMASTER'), getConfig('MAIN_TITLE'));
-               $mail->AddCustomHeader('Errors-To:' . getConfig('WEBMASTER'));
-               $mail->AddCustomHeader('X-Loop:' . getConfig('WEBMASTER'));
+               $mail->AddReplyTo(getWebmaster(), getMainTitle());
+               $mail->AddCustomHeader('Errors-To:' . getWebmaster());
+               $mail->AddCustomHeader('X-Loop:' . getWebmaster());
+               $mail->AddCustomHeader('Bounces-To:' . getWebmaster());
                $mail->Send();
 
                // Has an error occured?
@@ -678,18 +229,23 @@ function sendRawEmail ($toEmail, $subject, $message, $from) {
                }
        } else {
                // Use legacy mail() command
-               return mail($toEmail, $subject, decodeEntities($message), $from);
+               return mail($toEmail, $subject, decodeEntities($message), $headers);
        }
 }
 
 // Generate a password in a specified length or use default password length
-function generatePassword ($length = '0') {
+function generatePassword ($length = '0', $exclude =  array()) {
        // Auto-fix invalid length of zero
-       if ($length == '0') $length = getConfig('pass_len');
+       if ($length == '0') {
+               $length = getPassLen();
+       } // END - if
 
        // 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,-,+,_,/,.');
 
+       // Exclude some entries
+       $ABC = array_diff($ABC, $exclude);
+
        // Start creating password
        $PASS = '';
        for ($i = '0'; $i < $length; $i++) {
@@ -709,15 +265,22 @@ function generatePassword ($length = '0') {
 
 // Generates a human-readable timestamp from the Uni* stamp
 function generateDateTime ($time, $mode = '0') {
+       // If the stamp is zero it mostly didn't "happen"
+       if (($time == '0') || (is_null($time))) {
+               // Never happend
+               return '{--NEVER_HAPPENED--}';
+       } // END - if
+
        // Filter out numbers
        $time = bigintval($time);
 
-       // If the stamp is zero it mostly didn't "happen"
-       if ($time == '0') {
-               // Never happend
-               return getMessage('NEVER_HAPPENED');
+       // Is it cached?
+       if (isset($GLOBALS[__FUNCTION__][$time][$mode])) {
+               // Then use it
+               return $GLOBALS[__FUNCTION__][$time][$mode];
        } // END - if
 
+       // Detect language
        switch (getLanguage()) {
                case 'de': // German date / time format
                        switch ($mode) {
@@ -725,6 +288,10 @@ function generateDateTime ($time, $mode = '0') {
                                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;
+                               case '4': $ret = date('d.m.Y|H:i:s', $time); break;
+                               case '5': $ret = date('d-m-Y (l-F-T)', $time); break;
+                               case '6': $ret = date('Ymd', $time); break;
+                               case '7': $ret = date('Y-m-d H:i:s', $time); break; // Compatible with MySQL TIMESTAMP
                                default:
                                        logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
                                        break;
@@ -734,52 +301,44 @@ function generateDateTime ($time, $mode = '0') {
                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 '1': $ret = strtolower(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;
+                               case '4': $ret = date('d.m.Y|H:i:s', $time); break;
+                               case '5': $ret = date('d-m-Y (l-F-T)', $time); break;
+                               case '6': $ret = date('Ymd', $time); break;
+                               case '7': $ret = date('Y-m-d H:i:s', $time); break; // Compatible with MySQL TIMESTAMP
                                default:
                                        logDebugMessage(__FUNCTION__, __LINE__, sprintf("Invalid date mode %s detected.", $mode));
                                        break;
                        } // END - switch
        } // END - switch
 
+       // Store it in cache
+       $GLOBALS[__FUNCTION__][$time][$mode] = $ret;
+
        // Return result
        return $ret;
 }
 
 // Translates Y/N to yes/no
 function translateYesNo ($yn) {
-       // Default
-       $translated = '??? (' . $yn . ')';
-       switch ($yn) {
-               case 'Y': $translated = getMessage('YES'); break;
-               case 'N': $translated = getMessage('NO'); break;
-               default:
-                       // Log unknown value
-                       logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
-                       break;
-       } // END - switch
-
-       // Return it
-       return $translated;
-}
-
-// Translates the "pool type" into human-readable
-function translatePoolType ($type) {
-       // Default?type is unknown
-       $translated = getMaskedMessage('POOL_TYPE_UNKNOWN', $type);
-
-       // Generate constant
-       $constName = sprintf("POOL_TYPE_%s", $type);
-
-       // Does it exist?
-       if (isMessageIdValid($constName)) {
-               // Then use it
-               $translated = getMessage($constName);
+       // Is it cached?
+       if (!isset($GLOBALS[__FUNCTION__][$yn])) {
+               // Default
+               $GLOBALS[__FUNCTION__][$yn] = '??? (' . $yn . ')';
+               switch ($yn) {
+                       case 'Y': $GLOBALS[__FUNCTION__][$yn] = '{--YES--}'; break;
+                       case 'N': $GLOBALS[__FUNCTION__][$yn] = '{--NO--}'; break;
+                       default:
+                               // Log unknown value
+                               logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown value %s. Expected Y/N!", $yn));
+                               break;
+               } // END - switch
        } // END - if
 
-       // Return "translation"
-       return $translated;
+       // Return it
+       return $GLOBALS[__FUNCTION__][$yn];
 }
 
 // Translates the american decimal dot into a german comma
@@ -787,14 +346,18 @@ function translateComma ($dotted, $cut = true, $max = '0') {
        // First, cast all to double, due to PHP changes
        $dotted = (double) $dotted;
 
-       // Default is 3 you can change this in admin area "Misc -> Misc Options"
-       if (!isConfigEntrySet('max_comma')) setConfigEntry('max_comma', 3);
+       // Default is 3 you can change this in admin area "Settings -> Misc Options"
+       if (!isConfigEntrySet('max_comma')) {
+               setConfigEntry('max_comma', 3);
+       } // END - if
 
        // Use from config is default
        $maxComma = getConfig('max_comma');
 
        // Use from parameter?
-       if ($max > 0) $maxComma = $max;
+       if ($max > 0) {
+               $maxComma = $max;
+       } // END - if
 
        // Cut zeros off?
        if (($cut === true) && ($max == '0')) {
@@ -803,25 +366,26 @@ function translateComma ($dotted, $cut = true, $max = '0') {
                if (count($com) < 2) {
                        // Don't display commatas even if there are none... ;-)
                        $maxComma = '0';
-               }
+               } // END - if
        } // END - if
 
        // Debug log
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "dotted={$dotted},maxComma={$maxComma}");
 
        // Translate it now
+       $translated = $dotted;
        switch (getLanguage()) {
                case 'de': // German language
-                       $dotted = number_format($dotted, $maxComma, ',', '.');
+                       $translated = number_format($dotted, $maxComma, ',', '.');
                        break;
 
                default: // All others
-                       $dotted = number_format($dotted, $maxComma, '.', ',');
+                       $translated = number_format($dotted, $maxComma, '.', ',');
                        break;
        } // END - switch
 
        // Return translated value
-       return $dotted;
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dotted=' . $dotted . ',translated=' . $translated . ',maxComma=' . $maxComma);
+       return $translated;
 }
 
 // Translate Uni*-like gender to human-readable
@@ -831,9 +395,12 @@ function translateGender ($gender) {
 
        // Male/female or company?
        switch ($gender) {
-               case 'M': $ret = getMessage('GENDER_M'); break;
-               case 'F': $ret = getMessage('GENDER_F'); break;
-               case 'C': $ret = getMessage('GENDER_C'); break;
+               case 'M': // Male
+               case 'F': // Female
+               case 'C': // Company
+                       $ret = sprintf("{--GENDER_%s--}", $gender);
+                       break;
+
                default:
                        // Please report bugs on unknown genders
                        debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown gender %s detected.", $gender));
@@ -846,22 +413,25 @@ function translateGender ($gender) {
 
 // "Translates" the user status
 function translateUserStatus ($status) {
+       // Default status is unknown if something goes through
+       $ret = '{--ACCOUNT_STATUS_UNKNOWN--}';
+
        // Generate message depending on status
        switch ($status) {
                case 'UNCONFIRMED':
                case 'CONFIRMED':
                case 'LOCKED':
-                       $ret = getMessage(sprintf("ACCOUNT_%s", $status));
+                       $ret = sprintf("{--ACCOUNT_STATUS_%s--}", $status);
                        break;
 
                case '':
                case null:
-                       $ret = getMessage('ACCOUNT_DELETED');
+                       $ret = '{--ACCOUNT_STATUS_DELETED--}';
                        break;
 
                default:
                        // Please report all unknown status
-                       debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown status %s detected.", $status));
+                       debug_report_bug(__FUNCTION__, __LINE__, sprintf("Unknown status %s(%s) detected.", $status, gettype($status)));
                        break;
        } // END - switch
 
@@ -871,6 +441,9 @@ function translateUserStatus ($status) {
 
 // "Translates" 'visible' and 'locked' to a CSS class
 function translateMenuVisibleLocked ($content, $prefix = '') {
+       // Default is 'menu_unknown'
+       $content['visible_css'] = $prefix . 'menu_unknown';
+
        // Translate 'visible' and keep an eye on the prefix
        switch ($content['visible']) {
                // Should be visible
@@ -897,42 +470,23 @@ function translateMenuVisibleLocked ($content, $prefix = '') {
        return $content;
 }
 
-// "Getter" for menu CSS classes, mainly used in templates
-function getMenuCssClasses ($data) {
-       // $data needs to be converted into an array
-       $content = explode('|', $data);
-
-       // Non-existent index 2 will happen in menu blocks
-       if (!isset($content[2])) $content[2] = '';
-
-       // Re-construct the array: 0=visible,1=locked,2=prefix
-       $content['visible'] = $content[0];
-       $content['locked']  = $content[1];
-
-       // Call our "translator" function
-       $content = translateMenuVisibleLocked($content, $content[2]);
-
-       // Return CSS classes
-       return ($content['visible_css'] . ' ' . $content['locked_css']);
-}
-
 // Generates an URL for the dereferer
-function generateDerefererUrl ($URL) {
+function generateDerefererUrl ($url) {
        // Don't de-refer our own links!
-       if (substr($URL, 0, strlen(getConfig('URL'))) != getConfig('URL')) {
+       if (substr($url, 0, strlen(getUrl())) != getUrl()) {
                // De-refer this link
-               $URL = '{%url=modules.php?module=loader&amp;url=' . encodeString(compileUriCode($URL)) . '%}';
+               $url = '{%url=modules.php?module=loader&amp;url=' . encodeString(compileUriCode($url)) . '%}';
        } // END - if
 
        // Return link
-       return $URL;
+       return $url;
 }
 
 // Generates an URL for the frametester
-function generateFrametesterUrl ($URL) {
+function generateFrametesterUrl ($url) {
        // Prepare frametester URL
        $frametesterUrl = sprintf("{%%url=modules.php?module=frametester&amp;url=%s%%}",
-               encodeString(compileUriCode($URL))
+               encodeString(compileUriCode($url))
        );
 
        // Return the new URL
@@ -944,7 +498,7 @@ function countSelection ($array) {
        // Integrity check
        if (!is_array($array)) {
                // Not an array!
-               debug_report_bug(__FUNCTION__.': No array provided.');
+               debug_report_bug(__FUNCTION__, __LINE__, 'No array provided.');
        } // END - if
 
        // Init count
@@ -960,17 +514,12 @@ function countSelection ($array) {
        return $ret;
 }
 
-// Generate XHTML code for the CAPTCHA
-function generateCaptchaCode ($code, $type, $DATA, $userid) {
-       return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $DATA . '&amp;mode=img&amp;code=' . $code . '%}" />';
-}
-
 // Generates a timestamp (some wrapper for mktime())
 function makeTime ($hours, $minutes, $seconds, $stamp) {
        // Extract day, month and year from given timestamp
-       $days   = date('d', $stamp);
-       $months = date('m', $stamp);
-       $years  = date('Y', $stamp);
+       $days   = getDay($stamp);
+       $months = getMonth($stamp);
+       $years  = getYear($stamp);
 
        // Create timestamp for wished time which depends on extracted date
        return mktime(
@@ -984,50 +533,43 @@ function makeTime ($hours, $minutes, $seconds, $stamp) {
 }
 
 // Redirects to an URL and if neccessarry extends it with own base URL
-function redirectToUrl ($URL, $allowSpider = true) {
+function redirectToUrl ($url, $allowSpider = true) {
+       // Remove {%url=
+       if (substr($url, 0, 6) == '{%url=') {
+               $url = substr($url, 6, -2);
+       } // END - if
+
        // Compile out codes
-       eval('$URL = "' . compileRawCode(encodeUrl($URL)) . '";');
+       eval('$url = "' . compileRawCode(encodeUrl($url)) . '";');
 
        // Default 'rel' value is external, nofollow is evil from Google and hurts the Internet
        $rel = ' rel="external"';
 
        // Do we have internal or external URL?
-       if (substr($URL, 0, strlen(getConfig('URL'))) == getConfig('URL')) {
+       if (substr($url, 0, strlen(getUrl())) == getUrl()) {
                // Own (=internal) URL
                $rel = '';
        } // END - if
 
        // Three different ways to debug...
-       //* DEBUG: */ debug_report_bug(__FUNCTION__, __LINE__, sprintf("%s[%s:] URL=%s", __FUNCTION__, __LINE__, $URL));
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $URL);
-       //* DEBUG: */ die($URL);
-
-       // Simple probe for bots/spiders from search engines
-       if ((isSpider()) && ($allowSpider === true)) {
-               // Set HTTP-Status
-               setHttpStatus('200 OK');
+       //* DEBUG: */ debug_report_bug(__FUNCTION__, __LINE__, 'URL=' . $url);
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'URL=' . $url);
+       //* DEBUG: */ die($url);
 
-               // Set content-type here to fix a missing array element
-               setContentType('text/html');
-
-               // Output new location link as anchor
-               outputHtml('<a href="' . $URL . '"' . $rel . '>' . secureString($URL) . '</a>');
-       } elseif (!headers_sent()) {
+       // We should not sent a redirect if headers are already sent
+       if (!headers_sent()) {
                // Clear output buffer
                clearOutputBuffer();
 
                // Clear own output buffer
                $GLOBALS['output'] = '';
 
-               // Set header
-               setHttpStatus('302 Found');
-
                // Load URL when headers are not sent
-               sendRawRedirect(doFinalCompilation(str_replace('&amp;', '&', $URL), false));
+               sendRawRedirect(doFinalCompilation(str_replace('&amp;', '&', $url), false));
        } else {
                // Output error message
                loadInclude('inc/header.php');
-               loadTemplate('redirect_url', false, str_replace('&amp;', '&', $URL));
+               loadTemplate('redirect_url', false, str_replace('&amp;', '&', $url));
                loadInclude('inc/footer.php');
        }
 
@@ -1035,117 +577,6 @@ function redirectToUrl ($URL, $allowSpider = true) {
        shutdown();
 }
 
-// Wrapper for redirectToUrl but URL comes from a configuration entry
-function redirectToConfiguredUrl ($configEntry) {
-       // Load the URL
-       redirectToUrl(getConfig($configEntry));
-}
-
-// Compiles the given HTML/mail code
-function compileCode ($code, $simple = false, $constants = true, $full = true) {
-       // Is the code a string?
-       if (!is_string($code)) {
-               // Silently return it
-               return $code;
-       } // END - if
-
-       // Start couting
-       $startCompile = microtime(true);
-
-       // Comile the code
-       $code = compileRawCode($code, $simple, $constants, $full);
-
-       // Get timing
-       $compiled = microtime(true);
-
-       // Add timing if enabled
-       if (isTemplateHtml()) {
-               // Add timing, this should be disabled in
-               $code .= '<!-- Compilation time: ' . (($compiled - $startCompile) * 1000). 'ms //-->';
-       } // END - if
-
-       // Return compiled code
-       return $code;
-}
-
-// Compiles the code (use compileCode() only for HTML because of the comments)
-// @TODO $simple/$constants are deprecated
-function compileRawCode ($code, $simple = false, $constants = true, $full = true) {
-       // Is the code a string?
-       if (!is_string($code)) {
-               // Silently return it
-               return $code;
-       } // END - if
-
-       // Init replacement-array with smaller set of security characters
-       $secChars = $GLOBALS['url_chars'];
-
-       // Select full set of chars to replace when we e.g. want to compile URLs
-       if ($full === true) $secChars = $GLOBALS['security_chars'];
-
-       // Compile more through a filter
-       $code = runFilterChain('compile_code', $code);
-
-       // Compile message strings
-       $code = str_replace('{--', '{%message,', str_replace('--}', '%}', $code));
-
-       // Compile QUOT and other non-HTML codes
-       foreach ($secChars['to'] as $k => $to) {
-               // Do the reversed thing as in inc/libs/security_functions.php
-               $code = str_replace($to, $secChars['from'][$k], $code);
-       } // END - foreach
-
-       // Find $content[bla][blub] entries
-       // @TODO Do only use $content and deprecate $GLOBALS and $DATA in templates
-       preg_match_all('/\$(content|GLOBALS|DATA)((\[([a-zA-Z0-9-_]+)\])*)/', $code, $matches);
-
-       // Are some matches found?
-       if ((count($matches) > 0) && (count($matches[0]) > 0)) {
-               // Replace all matches
-               $matchesFound = array();
-               foreach ($matches[0] as $key => $match) {
-                       // Fuzzy look has failed by default
-                       $fuzzyFound = false;
-
-                       // Fuzzy look on match if already found
-                       foreach ($matchesFound as $found => $set) {
-                               // Get test part
-                               $test = substr($found, 0, strlen($match));
-
-                               // Does this entry exist?
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "found={$found},match={$match},set={$set}<br />");
-                               if ($test == $match) {
-                                       // Match found!
-                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "fuzzyFound!<br />");
-                                       $fuzzyFound = true;
-                                       break;
-                               } // END - if
-                       } // END - foreach
-
-                       // Skip this entry?
-                       if ($fuzzyFound === true) continue;
-
-                       // Take all string elements
-                       if ((is_string($matches[4][$key])) && (!isset($matchesFound[$match])) && (!isset($matchesFound[$key.'_' . $matches[4][$key]]))) {
-                               // Replace it in the code
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "key={$key},match={$match}<br />");
-                               $newMatch = str_replace('[', "['", str_replace(']', "']", $match));
-                               $code = str_replace($match, '".' . $newMatch . '."', $code);
-                               $matchesFound[$key . '_' . $matches[4][$key]] = 1;
-                               $matchesFound[$match] = 1;
-                       } elseif (!isset($matchesFound[$match])) {
-                               // Not yet replaced!
-                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "match={$match}<br />");
-                               $code = str_replace($match, '".' . $match . '."', $code);
-                               $matchesFound[$match] = 1;
-                       }
-               } // END - foreach
-       } // END - if
-
-       // Return it
-       return $code;
-}
-
 /************************************************************************
  *                                                                      *
  * Gaenderter Sortier-Algorythmus, $array wird nach dem Array (!)       *
@@ -1197,167 +628,67 @@ function array_pk_sort (&$array, $a_sort, $primary_key = '0', $order = -1, $nums
        $array = $dummy;
 }
 
-//
-function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'register_select') {
-       $OUT = '';
-
-       if ($type == 'yn') {
-               // This is a yes/no selection only!
-               if ($id > 0) $prefix .= '[' . $id . ']';
-               $OUT .= '<select name="' . $prefix . '" class="' . $class . '" size="1">';
-       } 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="' . $class . '" size="1">';
-       }
-
-       switch ($type) {
-               case 'day': // Day
-                       for ($idx = 1; $idx < 32; $idx++) {
-                               $OUT .= '<option value="' . $idx . '"';
-                               if ($default == $idx) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       break;
-
-               case 'month': // Month
-                       foreach ($GLOBALS['month_descr'] as $idx => $descr) {
-                               $OUT .= '<option value="' . $idx . '"';
-                               if ($default == $idx) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $descr . '</option>';
-                       } // END - for
-                       break;
-
-               case 'year': // Year
-                       // Get current year
-                       $year = date('Y', time());
-
-                       // Use configured min age or fixed?
-                       if (isExtensionInstalledAndNewer('order', '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;
-
-                       // 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>';
-                               } // END - for
-                       } elseif ($default == -1) {
-                               // Current year minus 1
-                               for ($idx = $startYear; $idx <= ($year + 1); $idx++) {
-                                       $OUT .= '<option value="' . $idx . '">' . $idx . '</option>';
-                               } // END - for
-                       } else {
-                               // Get current year and subtract the configured minimum age
-                               $OUT .= '<option value="' . ($minYear - 1) . '">&lt;' . $minYear . '</option>';
-                               // Calculate earliest year depending on extension version
-                               if (isExtensionInstalledAndNewer('order', '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>';
-                               } // 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>';
-                       } // 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>';
-                       } // END - for
-                       break;
-
-               case 'yn':
-                       $OUT .= '<option value="Y"';
-                       if ($default == 'Y') $OUT .= ' selected="selected"';
-                       $OUT .= '>{--YES--}</option><option value="N"';
-                       if ($default != 'Y') $OUT .= ' selected="selected"';
-                       $OUT .= '>{--NO--}</option>';
-                       break;
-       }
-       $OUT .= '</select>';
-       return $OUT;
-}
 
 //
-// Deprecated : $length
-// Optional   : $DATA
+// Deprecated : $length (still has one reference in this function)
+// Optional   : $extraData
 //
-function generateRandomCode ($length, $code, $userid, $DATA = '') {
+function generateRandomCode ($length, $code, $userid, $extraData = '') {
        // Build server string
-       $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr();
+       $server = $_SERVER['PHP_SELF'] . getEncryptSeperator() . detectUserAgent() . getEncryptSeperator() . getenv('SERVER_SOFTWARE') . getEncryptSeperator() . detectRealIpAddress() . getEncryptSeperator() . detectRemoteAddr();
 
        // Build key string
-       $keys = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY');
-       if (isConfigEntrySet('secret_key'))  $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('secret_key');
-       if (isConfigEntrySet('file_hash'))   $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('file_hash');
-       $keys .= getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime'));
-       if (isConfigEntrySet('master_salt')) $keys .= getConfig('ENCRYPT_SEPERATOR').getConfig('master_salt');
+       $keys = getSiteKey() . getEncryptSeperator() . getDateKey();
+       if (isConfigEntrySet('secret_key')) {
+               $keys .= getEncryptSeperator().getSecretKey();
+       } // END - if
+       if (isConfigEntrySet('file_hash')) {
+               $keys .= getEncryptSeperator().getFileHash();
+       } // END - if
+       $keys .= getEncryptSeperator() . getDateFromPatchTime();
+       if (isConfigEntrySet('master_salt')) {
+               $keys .= getEncryptSeperator().getMasterSalt();
+       } // END - if
 
        // Build string from misc data
-       $data   = $code . getConfig('ENCRYPT_SEPERATOR') . $userid . getConfig('ENCRYPT_SEPERATOR') . $DATA;
+       $data  = $code . getEncryptSeperator() . $userid . getEncryptSeperator() . $extraData;
 
        // Add more additional data
-       if (isSessionVariableSet('u_hash'))         $data .= getConfig('ENCRYPT_SEPERATOR') . getSession('u_hash');
+       if (isSessionVariableSet('u_hash')) {
+               $data .= getEncryptSeperator() . getSession('u_hash');
+       } // END - if
 
        // Add referal id, language, theme and userid
-       $data .= getConfig('ENCRYPT_SEPERATOR') . determineReferalId();
-       $data .= getConfig('ENCRYPT_SEPERATOR') . getLanguage();
-       $data .= getConfig('ENCRYPT_SEPERATOR') . getCurrentTheme();
-       $data .= getConfig('ENCRYPT_SEPERATOR') . getMemberId();
+       $data .= getEncryptSeperator() . determineReferalId();
+       $data .= getEncryptSeperator() . getLanguage();
+       $data .= getEncryptSeperator() . getCurrentTheme();
+       $data .= getEncryptSeperator() . getMemberId();
 
        // Calculate number for generating the code
        $a = $code + getConfig('_ADD') - 1;
 
        if (isConfigEntrySet('master_salt')) {
                // 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 % getPrime()) . getEncryptSeperator() . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getDateKey() . getEncryptSeperator() . $a, getMasterSalt());
 
                // Create number from hash
-               $rcode = hexdec(substr($saltedHash, strlen(getConfig('master_salt')), 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
+               $rcode = hexdec(substr($saltedHash, strlen(getMasterSalt()), 9)) / abs(getRandNo() - $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, getConfig('salt_length')));
+               $saltedHash = generateHash(($a % getPrime()) . getEncryptSeperator() . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getDateKey() . getEncryptSeperator() . $a, substr(sha1(getSiteKey()), 0, getSaltLength()));
 
                // Create number from hash
-               $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getConfig('rand_no') - $a + sqrt(getConfig('_ADD'))) / pi();
+               $rcode = hexdec(substr($saltedHash, 8, 9)) / abs(getRandNo() - $a + sqrt(getConfig('_ADD'))) / pi();
        }
 
        // At least 10 numbers shall be secure enought!
-       $len = getConfig('code_length');
-       if ($len == '0') $len = $length;
-       if ($len == '0') $len = 10;
+       $len = getCodeLength();
+       if ($len == '0') {
+               $len = $length;
+       } // END - if
+       if ($len == '0') {
+               $len = 10;
+       } // END - if
 
        // Cut off requested counts of number
        $return = substr(str_replace('.', '', $rcode), 0, $len);
@@ -1372,290 +703,36 @@ function bigintval ($num, $castValue = true, $abortOnMismatch = true) {
        $ret = preg_replace('/[^0123456789]/', '', $num);
 
        // Shall we cast?
-       if ($castValue === true) $ret = (double)$ret;
+       if ($castValue === true) {
+               // Cast to biggest numeric type
+               $ret = (double) $ret;
+       } // END - if
 
        // Has the whole value changed?
-       if (('' . $ret . '' != '' . $num . '') && ($abortOnMismatch === true)) {
+       if (('' . $ret . '' != '' . $num . '') && ($abortOnMismatch === true) && (!is_null($num))) {
                // Log the values
-               debug_report_bug(__FUNCTION__, __LINE__, 'Problem with number found. ret=' . $ret . ', num='. $num);
+               debug_report_bug(__FUNCTION__, __LINE__, 'Problem with number found. ret[' . gettype($ret) . ']=' . $ret . ', num[' . gettype($num) . ']='. $num);
        } // END - if
 
        // Return result
        return $ret;
 }
 
-// Insert the code in $img_code into jpeg or PNG image
-function generateImageOrCode ($img_code, $headerSent = true) {
-       // Is the code size oversized or shouldn't we display it?
-       if ((strlen($img_code) > 6) || (empty($img_code)) || (getConfig('code_length') == '0')) {
-               // Stop execution of function here because of over-sized code length
-               debug_report_bug(__FUNCTION__, __LINE__, 'img_code ' . $img_code .' has invalid length. img_code()=' . strlen($img_code) . ' code_length=' . getConfig('code_length'));
-       } elseif ($headerSent === false) {
-               // Return an HTML code here
-               return '<img src="{%url=img.php?code=' . $img_code . '%}" alt="Image" />';
-       }
+// Creates a Uni* timestamp from given selection data and prefix
+function createEpocheTimeFromSelections ($prefix, $postData) {
+       // Initial return value
+       $ret = '0';
 
-       // Load image
-       $img = sprintf("%s/theme/%s/images/code_bg.%s",
-               getConfig('PATH'),
-               getCurrentTheme(),
-               getConfig('img_type')
-       );
-
-       // Is it readable?
-       if (isFileReadable($img)) {
-               // Switch image type
-               switch (getConfig('img_type')) {
-                       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;
-               } // END - switch
-       } else {
-               // Exit function here
-               logDebugMessage(__FUNCTION__, __LINE__, sprintf("File for image type %s not found.", getConfig('img_type')));
-               return;
-       }
-
-       // Generate text color (red/green/blue; 0 = dark, 255 = bright)
-       $text_color = imagecolorallocate($image, 0, 0, 0);
-
-       // Insert code into image
-       imagestring($image, 5, 14, 2, $img_code, $text_color);
-
-       // Return to browser
-       sendHeader('Content-Type: image/' . getConfig('img_type'));
-
-       // Output image with matching image factory
-       switch (getConfig('img_type')) {
-               case 'jpg': imagejpeg($image); break;
-               case 'png': imagepng($image);  break;
-       } // END - switch
-
-       // Remove image from memory
-       imagedestroy($image);
-}
-// Create selection box or array of splitted timestamp
-function createTimeSelections ($timestamp, $prefix = '', $display = '', $align = 'center', $return_array=false) {
-       // Do not continue if ONE_DAY is absend
-       if (!isConfigEntrySet('ONE_DAY')) {
-               // And return the timestamp itself or empty array
-               if ($return_array === true) {
-                       return array();
-               } else {
-                       return $timestamp;
-               }
-       } // END - if
-
-       // Calculate 2-seconds timestamp
-       $stamp = round($timestamp);
-       //* DEBUG: */ debugOutput('*' . $stamp .'/' . $timestamp . '*');
-
-       // Do we have a leap year?
-       $SWITCH = '0';
-       $TEST = date('Y', time()) / 4;
-       $M1 = date('m', time());
-       $M2 = date('m', (time() + $timestamp));
+       // Do we have a leap year?
+       $SWITCH = '0';
+       $TEST = getYear() / 4;
+       $M1   = getMonth();
 
        // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
-       if ((floor($TEST) == $TEST) && ($M1 == '02') && ($M2 > '02'))  $SWITCH = getConfig('ONE_DAY');
-
-       // First of all years...
-       $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
-       //* DEBUG: */ debugOutput('Y=' . $Y);
-       // Next months...
-       $M = abs(floor($timestamp / 2628000 - $Y * 12));
-       //* DEBUG: */ debugOutput('M=' . $M);
-       // Next weeks
-       $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getConfig('ONE_DAY')) / 7) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) / 7)));
-       //* DEBUG: */ debugOutput('W=' . $W);
-       // Next days...
-       $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY'))) - $W * 7));
-       //* DEBUG: */ debugOutput('D=' . $D);
-       // Next hours...
-       $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24) - $W * 7 * 24 - $D * 24));
-       //* DEBUG: */ debugOutput('h=' . $h);
-       // Next minutes..
-       $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
-       //* DEBUG: */ debugOutput('m=' . $m);
-       // And at last seconds...
-       $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getConfig('ONE_DAY')) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
-       //* DEBUG: */ debugOutput('s=' . $s);
-
-       // Is seconds zero and time is < 60 seconds?
-       if (($s == '0') && ($timestamp < 60)) {
-               // Fix seconds
-               $s = round($timestamp);
+       if ((floor($TEST) == $TEST) && ($M1 == '02') && ($postData[$prefix . '_mo'] > '02'))  {
+               $SWITCH = getOneDay();
        } // END - if
 
-       //
-       // Now we convert them in seconds...
-       //
-       if ($return_array) {
-               // Just put all data in an array for later use
-               $OUT = array(
-                       'YEARS'   => $Y,
-                       'MONTHS'  => $M,
-                       'WEEKS'   => $W,
-                       'DAYS'    => $D,
-                       'HOURS'   => $h,
-                       'MINUTES' => $m,
-                       'SECONDS' => $s
-               );
-       } else {
-               // Generate table
-               $OUT  = '<div align="' . $align . '">';
-               $OUT .= '<table border="0" cellspacing="0" cellpadding="0" class="timebox_table dashed">';
-               $OUT .= '<tr>';
-
-               if (isInString('Y', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_YEARS--}</strong></td>';
-               } // END - if
-
-               if (isInString('M', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MONTHS--}</strong></td>';
-               } // END - if
-
-               if (isInString('W', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_WEEKS--}</strong></td>';
-               } // END - if
-
-               if (isInString('D', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_DAYS--}</strong></td>';
-               } // END - if
-
-               if (isInString('h', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_HOURS--}</strong></td>';
-               } // END - if
-
-               if (isInString('m', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_MINUTES--}</strong></td>';
-               } // END - if
-
-               if (isInString('s', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--_SECONDS--}</strong></td>';
-               } // END - if
-
-               $OUT .= '</tr>';
-               $OUT .= '<tr>';
-
-               if (isInString('Y', $display) || (empty($display))) {
-                       // Generate year selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_ye" size="1">';
-                       for ($idx = 0; $idx <= 10; $idx++) {
-                               $OUT .= '<option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $Y) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_ye" value="0" />';
-               }
-
-               if (isInString('M', $display) || (empty($display))) {
-                       // Generate month selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_mo" size="1">';
-                       for ($idx = 0; $idx <= 11; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $M) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_mo" value="0" />';
-               }
-
-               if (isInString('W', $display) || (empty($display))) {
-                       // Generate week selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_we" size="1">';
-                       for ($idx = 0; $idx <= 4; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $W) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_we" value="0" />';
-               }
-
-               if (isInString('D', $display) || (empty($display))) {
-                       // Generate day selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_da" size="1">';
-                       for ($idx = 0; $idx <= 31; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $D) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_da" value="0" />';
-               }
-
-               if (isInString('h', $display) || (empty($display))) {
-                       // Generate hour selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_ho" size="1">';
-                       for ($idx = 0; $idx <= 23; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $h) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_ho" value="0" />';
-               }
-
-               if (isInString('m', $display) || (empty($display))) {
-                       // Generate minute selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_mi" size="1">';
-                       for ($idx = 0; $idx <= 59; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $m) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_mi" value="0" />';
-               }
-
-               if (isInString('s', $display) || (empty($display))) {
-                       // Generate second selection
-                       $OUT .= '<td align="center"><select class="mini_select" name="' . $prefix . '_se" size="1">';
-                       for ($idx = 0; $idx <= 59; $idx++) {
-                               $OUT .= '  <option class="mini_select" value="' . $idx . '"';
-                               if ($idx == $s) $OUT .= ' selected="selected"';
-                               $OUT .= '>' . $idx . '</option>';
-                       } // END - for
-                       $OUT .= '</select></td>';
-               } else {
-                       $OUT .= '<input type="hidden" name="' . $prefix . '_se" value="0" />';
-               }
-               $OUT .= '</tr>';
-               $OUT .= '</table>';
-               $OUT .= '</div>';
-       }
-
-       // Return generated HTML code
-       return $OUT;
-}
-
-//
-function createTimestampFromSelections ($prefix, $postData) {
-       // Initial return value
-       $ret = '0';
-
-       // Do we have a leap year?
-       $SWITCH = '0';
-       $TEST = date('Y', time()) / 4;
-       $M1   = date('m', time());
-
-       // If so and if current time is before 02/29 and estimated time is after 02/29 then add 86400 seconds (one day)
-       if ((floor($TEST) == $TEST) && ($M1 == '02') && ($postData[$prefix . '_mo'] > '02'))  $SWITCH = getConfig('ONE_DAY');
-
        // First add years...
        $ret += $postData[$prefix . '_ye'] * (31536000 + $SWITCH);
 
@@ -1686,10 +763,10 @@ function createFancyTime ($stamp) {
        // Get data array with years/months/weeks/days/...
        $data = createTimeSelections($stamp, '', '', '', true);
        $ret = '';
-       foreach($data as $k => $v) {
+       foreach ($data as $k => $v) {
                if ($v > 0) {
                        // Value is greater than 0 "eval" data to return string
-                       eval('$ret .= ", ".$v." {--_' . strtoupper($k) . '--}";');
+                       $ret .= ', ' . $v . ' {--_' . strtoupper($k) . '--}';
                        break;
                } // END - if
        } // END - foreach
@@ -1710,7 +787,7 @@ function createFancyTime ($stamp) {
 // Extract host from script name
 function extractHostnameFromUrl (&$script) {
        // Use default SERVER_URL by default... ;) So?
-       $url = getConfig('SERVER_URL');
+       $url = getServerUrl();
 
        // Is this URL valid?
        if (substr($script, 0, 7) == 'http://') {
@@ -1723,7 +800,9 @@ function extractHostnameFromUrl (&$script) {
 
        // Extract host name
        $host = str_replace('http://', '', $url);
-       if (isInString('/', $host)) $host = substr($host, 0, strpos($host, '/'));
+       if (isInString('/', $host)) {
+               $host = substr($host, 0, strpos($host, '/'));
+       } // END - if
 
        // Generate relative URL
        //* DEBUG: */ debugOutput('SCRIPT=' . $script);
@@ -1736,285 +815,14 @@ function extractHostnameFromUrl (&$script) {
        }
 
        //* DEBUG: */ debugOutput('SCRIPT=' . $script);
-       if (substr($script, 0, 1) == '/') $script = substr($script, 1);
+       if (substr($script, 0, 1) == '/') {
+               $script = substr($script, 1);
+       } // END - if
 
        // Return host name
        return $host;
 }
 
-// Send a GET request
-function sendGetRequest ($script, $data = array()) {
-       // Extract host name from script
-       $host = extractHostnameFromUrl($script);
-
-       // Add data
-       $body = http_build_query($data, '', '&');
-
-       // Do we have a question-mark in the script?
-       if (strpos($script, '?') === false) {
-               // No, so first char must be question mark
-               $body = '?' . $body;
-       } else {
-               // Ok, add &
-               $body = '&' . $body;
-       }
-
-       // Add script data
-       $script .= $body;
-
-       // Remove trailed & to make it more conform
-       if (substr($script, -1, 1) == '&') $script = substr($script, 0, -1);
-
-       // Generate GET request header
-       $request  = 'GET /' . trim($script) . ' HTTP/1.1' . getConfig('HTTP_EOL');
-       $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
-       $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
-       if (isConfigEntrySet('FULL_VERSION')) {
-               $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
-       } else {
-               $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('VERSION') . getConfig('HTTP_EOL');
-       }
-       $request .= 'Accept: image/png,image/*;q=0.8,text/plain,text/html,*/*;q=0.5' . getConfig('HTTP_EOL');
-       $request .= 'Accept-Charset: UTF-8,*' . getConfig('HTTP_EOL');
-       $request .= 'Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0' . getConfig('HTTP_EOL');
-       $request .= 'Connection: close' . getConfig('HTTP_EOL');
-       $request .= getConfig('HTTP_EOL');
-
-       // Send the raw request
-       $response = sendRawRequest($host, $request);
-
-       // Return the result to the caller function
-       return $response;
-}
-
-// Send a POST request
-function sendPostRequest ($script, $postData) {
-       // Is postData an array?
-       if (!is_array($postData)) {
-               // Abort here
-               logDebugMessage(__FUNCTION__, __LINE__, sprintf("postData is not an array. Type: %s", gettype($postData)));
-               return array('', '', '');
-       } // END - if
-
-       // Extract host name from script
-       $host = extractHostnameFromUrl($script);
-
-       // Construct request body
-       $body = http_build_query($postData, '', '&');
-
-       // Generate POST request header
-       $request  = 'POST /' . trim($script) . ' HTTP/1.0' . getConfig('HTTP_EOL');
-       $request .= 'Host: ' . $host . getConfig('HTTP_EOL');
-       $request .= 'Referer: ' . getConfig('URL') . '/admin.php' . getConfig('HTTP_EOL');
-       $request .= 'User-Agent: ' . getConfig('TITLE') . '/' . getConfig('FULL_VERSION') . getConfig('HTTP_EOL');
-       $request .= 'Accept: text/plain;q=0.8' . getConfig('HTTP_EOL');
-       $request .= 'Accept-Charset: UTF-8,*' . getConfig('HTTP_EOL');
-       $request .= 'Cache-Control: no-cache' . getConfig('HTTP_EOL');
-       $request .= 'Content-Type: application/x-www-form-urlencoded' . getConfig('HTTP_EOL');
-       $request .= 'Content-Length: ' . strlen($body) . getConfig('HTTP_EOL');
-       $request .= 'Connection: close' . getConfig('HTTP_EOL');
-       $request .= getConfig('HTTP_EOL');
-
-       // Add body
-       $request .= $body;
-
-       // Send the raw request
-       $response = sendRawRequest($host, $request);
-
-       // Return the result to the caller function
-       return $response;
-}
-
-// 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('', '', '');
-
-       // Default is not to use proxy
-       $useProxy = false;
-
-       // Are proxy settins set?
-       if ((isConfigEntrySet('proxy_host')) && (getConfig('proxy_host') != '') && (isConfigEntrySet('proxy_port')) && (getConfig('proxy_port') > 0)) {
-               // Then use it
-               $useProxy = true;
-       } // END - if
-
-       // Load include
-       loadIncludeOnce('inc/classes/resolver.class.php');
-
-       // Get resolver instance
-       $resolver = new HostnameResolver();
-
-       // Open connection
-       //* DEBUG: */ die('SCRIPT=' . $script);
-       if ($useProxy === true) {
-               // Resolve hostname into IP address
-               $ip = $resolver->resolveHostname(compileRawCode(getConfig('proxy_host')));
-
-               // Connect to host through proxy connection
-               $fp = fsockopen($ip, bigintval(getConfig('proxy_port')), $errno, $errdesc, 30);
-       } else {
-               // Resolve hostname into IP address
-               $ip = $resolver->resolveHostname($host);
-
-               // Connect to host directly
-               $fp = fsockopen($ip, 80, $errno, $errdesc, 30);
-       }
-
-       // Is there a link?
-       if (!is_resource($fp)) {
-               // Failed!
-               logDebugMessage(__FUNCTION__, __LINE__, $errdesc . ' (' . $errno . ')');
-               return $response;
-       } elseif ((!stream_set_blocking($fp, 0)) || (!stream_set_timeout($fp, 1))) {
-               // Cannot set non-blocking mode or timeout
-               logDebugMessage(__FUNCTION__, __LINE__, socket_strerror(socket_last_error()));
-               return $response;
-       }
-
-       // Do we use proxy?
-       if ($useProxy === true) {
-               // Setup proxy tunnel
-               $response = setupProxyTunnel($host, $fp);
-
-               // If the response is invalid, abort
-               if ((count($response) == 3) && (empty($response[0])) && (empty($response[1])) && (empty($response[2]))) {
-                       // Invalid response!
-                       logDebugMessage(__FUNCTION__, __LINE__, 'Proxy tunnel not working?');
-                       return $response;
-               } // END - if
-       } // END - if
-
-       // Write request
-       fwrite($fp, $request);
-
-       // Start counting
-       $start = microtime(true);
-
-       // Read response
-       while (!feof($fp)) {
-               // Get info from stream
-               $info = stream_get_meta_data($fp);
-
-               // Is it timed out? 15 seconds is a really patient...
-               if (($info['timed_out'] == true) || (microtime(true) - $start) > 15) {
-                       // Timeout
-                       logDebugMessage(__FUNCTION__, __LINE__, 'Timed out to get data from host ' . $host);
-
-                       // Abort here
-                       break;
-               } // END - if
-
-               // Get line from stream
-               $line = fgets($fp, 128);
-
-               // Ignore empty lines because of non-blocking mode
-               if (empty($line)) {
-                       // uslepp a little to avoid 100% CPU load
-                       usleep(10);
-
-                       // Skip this
-                       continue;
-               } // END - if
-
-               // Add it to response
-               $response[] = trim($line);
-       } // END - while
-
-       // Close socket
-       fclose($fp);
-
-       // Time request if debug-mode is enabled
-       if (isDebugModeEnabled()) {
-               // Add debug message...
-               logDebugMessage(__FUNCTION__, __LINE__, 'Request took ' . (microtime(true) - $start) . ' seconds and returned ' . count($response) . ' line(s).');
-       } // END - if
-
-       // Skip first empty lines
-       $resp = $response;
-       foreach ($resp as $idx => $line) {
-               // Trim space away
-               $line = trim($line);
-
-               // Is this line empty?
-               if (empty($line)) {
-                       // Then remove it
-                       array_shift($response);
-               } else {
-                       // Abort on first non-empty line
-                       break;
-               }
-       } // END - foreach
-
-       //* DEBUG: */ debugOutput('<strong>Request:</strong><pre>'.print_r($request, true).'</pre>');
-       //* DEBUG: */ debugOutput('<strong>Response:</strong><pre>'.print_r($response, true).'</pre>');
-
-       // Proxy agent found or something went wrong?
-       if (!isset($response[0])) {
-               // No response, maybe timeout
-               $response = array('', '', '');
-               logDebugMessage(__FUNCTION__, __LINE__, 'Invalid empty response array, maybe timed out?');
-       } elseif ((substr(strtolower($response[0]), 0, 11) == 'proxy-agent') && ($useProxy === true)) {
-               // Proxy header detected, so remove two lines
-               array_shift($response);
-               array_shift($response);
-       } // END - if
-
-       // Was the request successfull?
-       if ((!isInStringIgnoreCase('200 OK', $response[0])) || (empty($response[0]))) {
-               // Not found / access forbidden
-               logDebugMessage(__FUNCTION__, __LINE__, 'Unexpected status code ' . $response[0] . ' detected. "200 OK" was expected.');
-               $response = array('', '', '');
-       } // END - if
-
-       // Return response
-       return $response;
-}
-
-// Sets up a proxy tunnel for given hostname and through resource
-function setupProxyTunnel ($host, $resource) {
-       // Initialize array
-       $response = array('', '', '');
-
-       // Generate CONNECT request header
-       $proxyTunnel  = 'CONNECT ' . $host . ':80 HTTP/1.0' . 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(compileRawCode(getConfig('proxy_username')) . ':' . compileRawCode(getConfig('proxy_password')));
-               $proxyTunnel .= 'Proxy-Authorization: Basic ' . $encodedAuth . getConfig('HTTP_EOL');
-       } // END - if
-
-       // Add last new-line
-       $proxyTunnel .= getConfig('HTTP_EOL');
-       //* DEBUG: */ debugOutput('<strong>proxyTunnel=</strong><pre>' . $proxyTunnel.'</pre>');
-
-       // Write request
-       fwrite($fp, $proxyTunnel);
-
-       // Got response?
-       if (feof($fp)) {
-               // No response received
-               return $response;
-       } // END - if
-
-       // Read the first line
-       $resp = trim(fgets($fp, 10240));
-       $respArray = explode(' ', $resp);
-       if ((strtolower($respArray[0]) !== 'http/1.0') || ($respArray[1] != '200')) {
-               // Invalid response!
-               return $response;
-       } // END - if
-
-       // All fine!
-       return $respArray;
-}
-
 // Taken from www.php.net isInStringIgnoreCase() user comments
 function isEmailValid ($email) {
        // Check first part of email address
@@ -2031,100 +839,36 @@ function isEmailValid ($email) {
 }
 
 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
-function isUrlValid ($URL, $compile=true) {
+function isUrlValid ($url, $compile=true) {
        // Trim URL a little
-       $URL = trim(urldecode($URL));
-       //* DEBUG: */ debugOutput($URL);
+       $url = trim(urldecode($url));
+       //* DEBUG: */ debugOutput($url);
 
        // Compile some chars out...
-       if ($compile === true) $URL = compileUriCode($URL, false, false, false);
-       //* DEBUG: */ debugOutput($URL);
+       if ($compile === true) {
+               $url = compileUriCode($url, false, false, false);
+       } // END - if
+       //* DEBUG: */ debugOutput($url);
 
        // Check for the extension filter
        if (isExtensionActive('filter')) {
                // Use the extension's filter set
-               return FILTER_VALIDATE_URL($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
        // https:// in front of the URLs
-       return isUrlValidSimple($URL);
-}
-
-// Generate a list of administrative links to a given userid
-function generateMemberAdminActionLinks ($userid) {
-       // Make sure userid is a number
-       if ($userid != bigintval($userid)) debug_report_bug(__FUNCTION__, __LINE__, 'userid is not a number!');
-
-       // Define all main targets
-       $targetArray = array('del_user', 'edit_user', 'lock_user', 'add_points', 'sub_points');
-
-       // Get user status
-       $status = getFetchedUserData('userid', $userid, 'status');
-
-       // Begin of navigation links
-       $OUT = '[';
-
-       foreach ($targetArray as $tar) {
-               $OUT .= '<span class="admin_user_link"><a href="{%url=modules.php?module=admin&amp;what=' . $tar . '&amp;userid=' . $userid . '%}" title="{--ADMIN_LINK_';
-               //* DEBUG: */ debugOutput('*' . $tar.'/' . $status.'*');
-               if (($tar == 'lock_user') && ($status == 'LOCKED')) {
-                       // Locked accounts shall be unlocked
-                       $OUT .= 'UNLOCK_USER';
-               } else {
-                       // All other status is fine
-                       $OUT .= strtoupper($tar);
-               }
-               $OUT .= '_TITLE--}">{--ADMIN_';
-               if (($tar == 'lock_user') && ($status == 'LOCKED')) {
-                       // Locked accounts shall be unlocked
-                       $OUT .= 'UNLOCK_USER';
-               } else {
-                       // All other status is fine
-                       $OUT .= strtoupper($tar);
-               }
-               $OUT .= '--}</a></span>|';
-       } // END - foreach
-
-       // Finish navigation link
-       $OUT = substr($OUT, 0, -1) . ']';
-
-       // Return string
-       return $OUT;
-}
-
-// Generate an email link
-function generateEmailLink ($email, $table = 'admins') {
-       // Default email link (INSECURE! Spammer can read this by harvester programs)
-       $EMAIL = 'mailto:' . $email;
-
-       // Check for several extensions
-       if ((isExtensionActive('admins')) && ($table == 'admins')) {
-               // Create email link for contacting admin in guest area
-               $EMAIL = generateAdminEmailLink($email);
-       } elseif ((isExtensionInstalledAndNewer('user', '0.3.3')) && ($table == 'user_data')) {
-               // Create email link for contacting a member within admin area (or later in other areas, too?)
-               $EMAIL = generateUserEmailLink($email, 'admin');
-       } elseif ((isExtensionActive('sponsor')) && ($table == 'sponsor_data')) {
-               // Create email link to contact sponsor within admin area (or like the link above?)
-               $EMAIL = generateSponsorEmailLink($email, 'sponsor_data');
-       }
-
-       // Shall I close the link when there is no admin?
-       if ((!isAdmin()) && ($EMAIL == $email)) $EMAIL = '#'; // Closed!
-
-       // Return email link
-       return $EMAIL;
+       return isUrlValidSimple($url);
 }
 
 // Generate a hash for extra-security for all passwords
 function generateHash ($plainText, $salt = '', $hash = true) {
        // Debug output
-       //* DEBUG: */ debugOutput('plainText=' . $plainText . ',salt=' . $salt . ',hash='.intval($hash));
+       //* DEBUG: */ debugOutput('plainText('.strlen($plainText).')=' . $plainText . ',salt('.strlen($salt).')=' . $salt . ',hash=' . intval($hash));
 
        // Is the required extension 'sql_patches' there and a salt is not given?
-       // 0123                            4                      43    3     4     432    2                  3             32    2                             3                3210
-       if ((((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) && (empty($salt))) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5')))) {
+       // 123                            4                      43    3     4     432    2                  3             32    2                             3                32    2      3     3      21
+       if (((isExtensionInstalledAndOlder('sql_patches', '0.3.6')) && (empty($salt))) || (!isExtensionActive('sql_patches')) || (!isExtensionInstalledAndNewer('other', '0.2.5')) || (strlen($salt) == 32)) {
                // Extension sql_patches is missing/outdated so we hash the plain text with MD5
                if ($hash === true) {
                        // Is plain password
@@ -2144,19 +888,19 @@ function generateHash ($plainText, $salt = '', $hash = true) {
        // When the salt is empty build a new one, else use the first x configured characters as the salt
        if (empty($salt)) {
                // Build server string for more entropy
-               $server = $_SERVER['PHP_SELF'] . getConfig('ENCRYPT_SEPERATOR') . detectUserAgent() . getConfig('ENCRYPT_SEPERATOR') . getenv('SERVER_SOFTWARE') . getConfig('ENCRYPT_SEPERATOR') . detectRemoteAddr();
+               $server = $_SERVER['PHP_SELF'] . getEncryptSeperator() . detectUserAgent() . getEncryptSeperator() . getenv('SERVER_SOFTWARE') . getEncryptSeperator() . detectRealIpAddress() . getEncryptSeperator() . detectRemoteAddr();
 
                // Build key string
-               $keys   = getConfig('SITE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('DATE_KEY') . getConfig('ENCRYPT_SEPERATOR') . getConfig('secret_key') . getConfig('ENCRYPT_SEPERATOR') . getConfig('file_hash') . getConfig('ENCRYPT_SEPERATOR') . date('d-m-Y (l-F-T)', getConfig('patch_ctime')) . getConfig('ENCRYPT_SEPERATOR') . getConfig('master_salt');
+               $keys   = getSiteKey() . getEncryptSeperator() . getDateKey() . getEncryptSeperator() . getSecretKey() . getEncryptSeperator() . getFileHash() . getEncryptSeperator() . getDateFromPatchTime() . getEncryptSeperator() . getMasterSalt();
 
                // Additional data
-               $data = $plainText . getConfig('ENCRYPT_SEPERATOR') . uniqid(mt_rand(), true) . getConfig('ENCRYPT_SEPERATOR') . time();
+               $data = $plainText . getEncryptSeperator() . uniqid(mt_rand(), true) . getEncryptSeperator() . time();
 
                // Calculate number for generating the code
                $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);
+               $sha1 = sha1(($a % getPrime()) . $server . getEncryptSeperator() . $keys . getEncryptSeperator() . $data . getEncryptSeperator() . getDateKey() . getEncryptSeperator() . $a);
                //* DEBUG: */ debugOutput('SHA1=' . $sha1.' ('.strlen($sha1).')<br />');
                $sha1 = scrambleString($sha1);
                //* DEBUG: */ debugOutput('Scrambled=' . $sha1.' ('.strlen($sha1).')<br />');
@@ -2164,18 +908,18 @@ function generateHash ($plainText, $salt = '', $hash = true) {
                //* DEBUG: */ debugOutput('Descrambled=' . $sha1b.' ('.strlen($sha1b).')<br />');
 
                // Generate the password salt string
-               $salt = substr($sha1, 0, getConfig('salt_length'));
+               $salt = substr($sha1, 0, getSaltLength());
                //* DEBUG: */ debugOutput($salt.' ('.strlen($salt).')<br />');
        } else {
                // Use given salt
                //* DEBUG: */ debugOutput('salt=' . $salt);
-               $salt = substr($salt, 0, getConfig('salt_length'));
-               //* DEBUG: */ debugOutput('salt=' . $salt . '(' . strlen($salt) . '/' . getConfig('salt_length') . ')<br />');
+               $salt = substr($salt, 0, getSaltLength());
+               //* DEBUG: */ debugOutput('salt=' . $salt . '(' . strlen($salt) . '/' . getSaltLength() . ')<br />');
 
                // Sanity check on salt
-               if (strlen($salt) != getConfig('salt_length')) {
+               if (strlen($salt) != getSaltLength()) {
                        // Not the same!
-                       debug_report_bug(__FUNCTION__.': salt length mismatch! ('.strlen($salt).'/'.getConfig('salt_length').')');
+                       debug_report_bug(__FUNCTION__, __LINE__, 'salt length mismatch! (' . strlen($salt) . '/' . getSaltLength() . ')');
                } // END - if
        }
 
@@ -2183,24 +927,24 @@ function generateHash ($plainText, $salt = '', $hash = true) {
        $finalHash = $salt . sha1($salt . $plainText);
 
        // Debug output
-       //* DEBUG: */ debugOutput('finalHash=' . $finalHash);
+       //* DEBUG: */ debugOutput('finalHash('.strlen($finalHash).')=' . $finalHash);
 
        // Return hash
        return $finalHash;
 }
 
 // Scramble a string
-function scrambleString($str) {
+function scrambleString ($str) {
        // Init
        $scrambled = '';
 
-       // Final check, in case of failture it will return unscrambled string
+       // Final check, in case of failure it will return unscrambled string
        if (strlen($str) > 40) {
                // The string is to long
                return $str;
        } elseif (strlen($str) == 40) {
                // From database
-               $scrambleNums = explode(':', getConfig('pass_scramble'));
+               $scrambleNums = explode(':', getPassScramble());
        } else {
                // Generate new numbers
                $scrambleNums = explode(':', genScrambleString(strlen($str)));
@@ -2225,12 +969,12 @@ function scrambleString($str) {
 }
 
 // De-scramble a string scrambled by scrambleString()
-function descrambleString($str) {
+function descrambleString ($str) {
        // Scramble only 40 chars long strings
        if (strlen($str) != 40) return $str;
 
        // Load numbers from config
-       $scrambleNums = explode(':', getConfig('pass_scramble'));
+       $scrambleNums = explode(':', getPassScramble());
 
        // Validate numbers
        if (count($scrambleNums) != 40) return $str;
@@ -2256,11 +1000,11 @@ function genScrambleString ($len) {
        // First we need to setup randomized numbers from 0 to 31
        for ($idx = 0; $idx < $len; $idx++) {
                // Generate number
-               $rand = mt_rand(0, ($len -1));
+               $rand = mt_rand(0, ($len - 1));
 
                // Check for it by creating more numbers
                while (array_key_exists($rand, $scrambleNumbers)) {
-                       $rand = mt_rand(0, ($len -1));
+                       $rand = mt_rand(0, ($len - 1));
                } // END - while
 
                // Add number
@@ -2281,24 +1025,24 @@ function encodeHashForCookie ($passHash) {
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, intval(isExtensionInstalled('sql_patches')) . '/' . intval(isConfigEntrySet('_PRIME')) . '/' . intval(isConfigEntrySet('secret_key')) . '/' . intval(isConfigEntrySet('master_salt')));
        if ((isExtensionInstalled('sql_patches')) && (isConfigEntrySet('_PRIME')) && (isConfigEntrySet('secret_key')) && (isConfigEntrySet('master_salt'))) {
                // Only calculate when the secret key is generated
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '/' . strlen(getConfig('secret_key')));
-               if ((strlen($passHash) != 49) || (strlen(getConfig('secret_key')) != 40)) {
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '/' . strlen(getSecretKey()));
+               if ((strlen($passHash) != 49) || (strlen(getSecretKey()) != 40)) {
                        // Both keys must have same length so return unencrypted
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '!=49/' . strlen(getConfig('secret_key')) . '!=40');
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, strlen($passHash) . '!=49/' . strlen(getSecretKey()) . '!=40');
                        return $ret;
                } // END - if
 
                $newHash = ''; $start = 9;
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'passHash=' . $passHash . '(' . strlen($passHash) . ')');
                for ($idx = 0; $idx < 20; $idx++) {
-                       $part1 = hexdec(substr($passHash, ($idx * 2) + (strlen($passHash) - strlen(getConfig('secret_key'))), 2));
-                       $part2 = hexdec(substr(getConfig('secret_key'), $start, 2));
+                       $part1 = hexdec(substr($passHash, ($idx * 2) + (strlen($passHash) - strlen(getSecretKey())), 2));
+                       $part2 = hexdec(substr(getSecretKey(), $start, 2));
                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'part1=' . $part1 . '/part2=' . $part2);
                        $mod = dechex($idx);
                        if ($part1 > $part2) {
-                               $mod = dechex(sqrt(($part1 - $part2) * getConfig('_PRIME') / pi()));
+                               $mod = dechex(sqrt(($part1 - $part2) * getPrime() / pi()));
                        } elseif ($part2 > $part1) {
-                               $mod = dechex(sqrt(($part2 - $part1) * getConfig('_PRIME') / pi()));
+                               $mod = dechex(sqrt(($part2 - $part1) * getPrime() / pi()));
                        }
                        $mod = substr($mod, 0, 2);
                        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'part1=' . $part1 . '/part2=' . $part2 . '/mod=' . $mod . '(' . strlen($mod) . ')');
@@ -2309,7 +1053,7 @@ function encodeHashForCookie ($passHash) {
                } // END - for
 
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, $passHash . ',' . $newHash . ' (' . strlen($newHash) . ')');
-               $ret = generateHash($newHash, getConfig('master_salt'));
+               $ret = generateHash($newHash, getMasterSalt());
        } // END - if
 
        // Return result
@@ -2331,90 +1075,6 @@ function fixDeletedCookies ($cookies) {
        } // END - if
 }
 
-// Output error messages in a fasioned way and die...
-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;
-
-               // Set content type as text/html
-               setContentType('text/html');
-
-               // Load header
-               loadIncludeOnce('inc/header.php');
-
-               // Rewrite message for output
-               $message = sprintf(getMessage('MAILER_HAS_DIED'), basename($F), $L, $message);
-
-               // Load the message template
-               loadTemplate('app_die_message', false, $message);
-
-               // Load footer
-               loadIncludeOnce('inc/footer.php');
-       } else {
-               // Script tried to kill itself twice
-               die('['.__FUNCTION__.':'.__LINE__.']: 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
-function displayParsingTime () {
-       // Is the timer started?
-       if (!isset($GLOBALS['startTime'])) {
-               // Abort here
-               return false;
-       } // END - if
-
-       // Get end time
-       $endTime = microtime(true);
-
-       // "Explode" both times
-       $start = explode(' ', $GLOBALS['startTime']);
-       $end = explode(' ', $endTime);
-       $runTime = $end[0] - $start[0];
-       if ($runTime < 0) $runTime = '0';
-
-       // Prepare output
-       // @TODO This can be easily moved out after the merge from EL branch to this is complete
-       $content = array(
-               'run_time' => $runTime,
-               'sql_time' => translateComma(getConfig('sql_time') * 1000),
-       );
-
-       // Load the template
-       $GLOBALS['page_footer'] .= loadTemplate('show_timings', true, $content);
-}
-
-// Check wether a boolean constant is set
-// Taken from user comments in PHP documentation for function constant()
-function isBooleanConstantAndTrue ($constName) { // : Boolean
-       // Failed by default
-       $res = false;
-
-       // In cache?
-       if (isset($GLOBALS['cache_array']['const'][$constName])) {
-               // Use cache
-               //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): ' . $constName."-CACHE!<br />");
-               $res = ($GLOBALS['cache_array']['const'][$constName] === true);
-       } else {
-               // Check constant
-               //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): ' . $constName."-RESOLVE!<br />");
-               if (defined($constName)) {
-                       // Found!
-                       //* DEBUG: */ debugOutput(__FUNCTION__ . '(<font color="#0000aa">' . __LINE__ . '</font>): ' . $constName."-FOUND!<br />");
-                       $res = (constant($constName) === true);
-               } // END - if
-
-               // Set cache
-               $GLOBALS['cache_array']['const'][$constName] = $res;
-       }
-       //* DEBUG: */ var_dump($res);
-
-       // Return value
-       return $res;
-}
-
 // Checks if a given apache module is loaded
 function isApacheModuleLoaded ($apacheModule) {
        // Check it and return result
@@ -2437,7 +1097,7 @@ function getCurrentTheme () {
 }
 
 // Generates an error code from given account status
-function generateErrorCodeFromUserStatus ($status='') {
+function generateErrorCodeFromUserStatus ($status = '') {
        // If no status is provided, use the default, cached
        if ((empty($status)) && (isMember())) {
                // Get user status
@@ -2445,10 +1105,10 @@ function generateErrorCodeFromUserStatus ($status='') {
        } // END - if
 
        // Default error code if unknown account status
-       $errorCode = getCode('UNKNOWN_STATUS');
+       $errorCode = getCode('ACCOUNT_STATUS_UNKNOWN');
 
        // Generate constant name
-       $codeName = sprintf("ACCOUNT_%s", strtoupper($status));
+       $codeName = sprintf("ACCOUNT_STATUS_%s", strtoupper($status));
 
        // Is the constant there?
        if (isCodeSet($codeName)) {
@@ -2474,7 +1134,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>';
+               $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>';
        } // END - foreach
 
        // Close it
@@ -2502,56 +1162,6 @@ function debug_get_mailable_backtrace () {
        return $backtrace;
 }
 
-// Output a debug backtrace to the user
-function debug_report_bug ($F, $L, $message = '', $sendEmail = true) {
-       // Is this already called?
-       if (isset($GLOBALS[__FUNCTION__])) {
-               // Other backtrace
-               print 'Message:'.$message.'<br />Backtrace:<pre>';
-               debug_print_backtrace();
-               die('</pre>');
-       } // END - if
-
-       // Set this function as called
-       $GLOBALS[__FUNCTION__] = true;
-
-       // Init message
-       $debug = '';
-
-       // Is the optional message set?
-       if (!empty($message)) {
-               // Use and log it
-               $debug = sprintf("Note: %s<br />\n",
-                       $message
-               );
-
-               // @TODO Add a little more infos here
-               logDebugMessage($F, $L, strip_tags($message));
-       } // END - if
-
-       // Add output
-       $debug .= 'Please report this bug at <a title="Direct link to the bug-tracker" href="http://bugs.mxchange.org" rel="external" target="_blank">http://bugs.mxchange.org</a> and include the logfile from <strong>' . str_replace(getConfig('PATH'), '', getConfig('CACHE_PATH')) . 'debug.log</strong> in your report (you can now attach files):<pre>';
-       $debug .= debug_get_printable_backtrace();
-       $debug .= '</pre>';
-       $debug .= '<div>Request-URI: ' . getRequestUri() . '</div>';
-       $debug .= '<div>Thank you for finding bugs.</div>';
-
-       // Send an email? (e.g. not wanted for evaluation errors)
-       if (($sendEmail === true) && (!isInstallationPhase())) {
-               // Prepare content
-               $content = array(
-                       'message'   => trim($message),
-                       'backtrace' => trim(debug_get_mailable_backtrace())
-               );
-
-               // Send email to webmaster
-               sendAdminNotification(getMessage('DEBUG_REPORT_BUG_SUBJECT'), 'admin_report_bug', $content);
-       } // END - if
-
-       // And abort here
-       app_die($F, $L, $debug);
-}
-
 // Generates a ***weak*** seed
 function generateSeed () {
        return microtime(true) * 100000;
@@ -2562,41 +1172,42 @@ function getMessageFromErrorCode ($code) {
        $message = '';
        switch ($code) {
                case '': 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('USER_404')           : $message = getMessage('USER_404'); break;
-               case getCode('STATS_404')          : $message = getMessage('MAIL_STATS_404'); break;
-               case getCode('ALREADY_CONFIRMED')  : $message = getMessage('MAIL_ALREADY_CONFIRMED'); break;
-               case getCode('WRONG_PASS')         : $message = getMessage('LOGIN_WRONG_PASS'); break;
-               case getCode('WRONG_ID')           : $message = getMessage('LOGIN_WRONG_ID'); break;
-               case getCode('ACCOUNT_LOCKED')     : $message = getMessage('LOGIN_STATUS_LOCKED'); break;
-               case getCode('ACCOUNT_UNCONFIRMED'): $message = getMessage('LOGIN_STATUS_UNCONFIRMED'); break;
-               case getCode('COOKIES_DISABLED')   : $message = getMessage('LOGIN_COOKIES_DISABLED'); 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('LOGOUT_DONE')        : $message = '{--LOGOUT_DONE--}'; break;
+               case getCode('LOGOUT_FAILED')      : $message = '<span class="notice">{--LOGOUT_FAILED--}</span>'; break;
+               case getCode('DATA_INVALID')       : $message = '{--MAIL_DATA_INVALID--}'; break;
+               case getCode('POSSIBLE_INVALID')   : $message = '{--MAIL_POSSIBLE_INVALID--}'; break;
+               case getCode('USER_404')           : $message = '{--USER_404--}'; break;
+               case getCode('STATS_404')          : $message = '{--MAIL_STATS_404--}'; break;
+               case getCode('ALREADY_CONFIRMED')  : $message = '{--MAIL_ALREADY_CONFIRMED--}'; break;
+               case getCode('WRONG_PASS')         : $message = '{--LOGIN_WRONG_PASS--}'; break;
+               case getCode('WRONG_ID')           : $message = '{--LOGIN_WRONG_ID--}'; break;
+               case getCode('ACCOUNT_LOCKED')     : $message = '{--LOGIN_STATUS_LOCKED--}'; break;
+               case getCode('ACCOUNT_UNCONFIRMED'): $message = '{--LOGIN_STATUS_UNCONFIRMED--}'; break;
+               case getCode('COOKIES_DISABLED')   : $message = '{--LOGIN_COOKIES_DISABLED--}'; break;
+               case getCode('BEG_SAME_AS_OWN')    : $message = '{--BEG_SAME_USERID_AS_OWN--}'; break;
+               case getCode('LOGIN_FAILED')       : $message = '{--GUEST_LOGIN_FAILED_GENERAL--}'; break;
                case getCode('MODULE_MEMBER_ONLY') : $message = getMaskedMessage('MODULE_MEMBER_ONLY', getRequestParameter('mod')); break;
-               case getCode('OVERLENGTH')         : $message = getMessage('MEMBER_TEXT_OVERLENGTH'); break;
-               case getCode('URL_FOUND')          : $message = getMessage('MEMBER_TEXT_CONTAINS_URL'); break;
-               case getCode('SUBJ_URL')           : $message = getMessage('MEMBER_SUBJ_CONTAINS_URL'); break;
+               case getCode('OVERLENGTH')         : $message = '{--MEMBER_TEXT_OVERLENGTH--}'; break;
+               case getCode('URL_FOUND')          : $message = '{--MEMBER_TEXT_CONTAINS_URL--}'; break;
+               case getCode('SUBJECT_URL')        : $message = '{--MEMBER_SUBJECT_CONTAINS_URL--}'; break;
                case getCode('BLIST_URL')          : $message = '{--MEMBER_URL_BLACK_LISTED--}<br />{--MEMBER_BLIST_TIME--}: ' . generateDateTime(getRequestParameter('blist'), 0); break;
-               case getCode('NO_RECS_LEFT')       : $message = getMessage('MEMBER_SELECTED_MORE_RECS'); break;
-               case getCode('INVALID_TAGS')       : $message = getMessage('MEMBER_HTML_INVALID_TAGS'); break;
-               case getCode('MORE_POINTS')        : $message = getMessage('MEMBER_MORE_POINTS_NEEDED'); break;
-               case getCode('MORE_RECEIVERS1')    : $message = getMessage('MEMBER_ENTER_MORE_RECEIVERS'); break;
-               case getCode('MORE_RECEIVERS2')    : $message = getMessage('MEMBER_NO_MORE_RECEIVERS_FOUND'); break;
-               case getCode('MORE_RECEIVERS3')    : $message = getMessage('MEMBER_ENTER_MORE_MIN_RECEIVERS'); break;
-               case getCode('INVALID_URL')        : $message = getMessage('MEMBER_ENTER_INVALID_URL'); break;
-               case getCode('NO_MAIL_TYPE')       : $message = getMessage('MEMBER_NO_MAIL_TYPE_SELECTED'); break;
-               case getCode('UNKNOWN_ERROR')      : $message = getMessage('LOGIN_UNKNOWN_ERROR'); break;
-               case getCode('UNKNOWN_STATUS')     : $message = getMessage('LOGIN_UNKNOWN_STATUS'); break;
+               case getCode('NO_RECS_LEFT')       : $message = '{--MEMBER_SELECTED_MORE_RECS--}'; break;
+               case getCode('INVALID_TAGS')       : $message = '{--MEMBER_HTML_INVALID_TAGS--}'; break;
+               case getCode('MORE_POINTS')        : $message = '{--MEMBER_MORE_POINTS_NEEDED--}'; break;
+               case getCode('MORE_RECEIVERS1')    : $message = '{--MEMBER_ENTER_MORE_RECEIVERS--}'; break;
+               case getCode('MORE_RECEIVERS2')    : $message = '{--MEMBER_NO_MORE_RECEIVERS_FOUND--}'; break;
+               case getCode('MORE_RECEIVERS3')    : $message = '{--MEMBER_ENTER_MORE_MIN_RECEIVERS--}'; break;
+               case getCode('INVALID_URL')        : $message = '{--MEMBER_ENTER_INVALID_URL--}'; break;
+               case getCode('NO_MAIL_TYPE')       : $message = '{--MEMBER_NO_MAIL_TYPE_SELECTED--}'; break;
+               case getCode('UNKNOWN_ERROR')      : $message = '{--LOGIN_UNKNOWN_ERROR--}'; break;
+               case getCode('UNKNOWN_STATUS')     : $message = '{--LOGIN_UNKNOWN_STATUS--}'; break;
+               case getCode('PROFILE_UPDATED')    : $message = '{--MEMBER_PROFILE_UPDATED--}'; break;
 
                case getCode('ERROR_MAILID'):
                        if (isExtensionActive('mailid', true)) {
-                               $message = getMessage('ERROR_CONFIRMING_MAIL');
+                               $message = '{--ERROR_CONFIRMING_MAIL--}';
                        } else {
-                               $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', 'mailid');
+                               $message = generateExtensionInactiveNotInstalledMessage('mailid');
                        }
                        break;
 
@@ -2604,38 +1215,35 @@ function getMessageFromErrorCode ($code) {
                        if (isGetRequestParameterSet('ext')) {
                                $message = generateExtensionInactiveNotInstalledMessage(getRequestParameter('ext'));
                        } else {
-                               $message = getMessage('EXTENSION_PROBLEM_UNSET_EXT');
+                               $message = '{--EXTENSION_PROBLEM_UNSET_EXT--}';
                        }
                        break;
 
-               case getCode('URL_TLOCK'):
+               case getCode('URL_TIME_LOCK'):
                        // @TODO Move this SQL code into a function, let's say 'getTimestampFromPoolId($id) ?
                        $result = SQL_QUERY_ESC("SELECT `timestamp` FROM `{?_MYSQL_PREFIX?}_pool` WHERE `id`=%s LIMIT 1",
                                array(bigintval(getRequestParameter('id'))), __FUNCTION__, __LINE__);
 
                        // Load timestamp from last order
-                       list($timestamp) = SQL_FETCHROW($result);
+                       $content = SQL_FETCHARRAY($result);
 
                        // Free memory
                        SQL_FREERESULT($result);
 
                        // Translate it for templates
-                       $timestamp = generateDateTime($timestamp, 1);
+                       $content['timestamp'] = generateDateTime($content['timestamp'], 1);
 
                        // Calculate hours...
-                       $STD = round(getConfig('url_tlock') / 60 / 60);
+                       $content['hours'] = round(getUrlTlock() / 60 / 60);
 
                        // Minutes...
-                       $MIN = round((getConfig('url_tlock') - $STD * 60 * 60) / 60);
+                       $content['minutes'] = round((getUrlTlock() - $content['hours'] * 60 * 60) / 60);
 
                        // And seconds
-                       $SEC = getConfig('url_tlock') - $STD * 60 * 60 - $MIN * 60;
+                       $content['seconds'] = round(getUrlTlock() - $content['hours'] * 60 * 60 - $content['minutes'] * 60);
 
                        // Finally contruct the message
-                       // @TODO Rewrite this old lost code to a template
-                       $message = "{--MEMBER_URL_TIME_LOCK--}<br />{--CONFIG_URL_TLOCK--} ".$STD."
-                       {--_HOURS--}, ".$MIN." {--_MINUTES--} {--_AND--} ".$SEC." {--_SECONDS--}<br />
-                       {--MEMBER_LAST_TLOCK--}: ".$timestamp;
+                       $message = loadTemplate('tlock_message', true, $content);
                        break;
 
                default:
@@ -2651,28 +1259,6 @@ function getMessageFromErrorCode ($code) {
        return $message;
 }
 
-// Compile characters which are allowed in URLs
-function compileUriCode ($code, $simple = true) {
-       // Compile constants
-       if ($simple === false) $code = str_replace('{--', '".', str_replace('--}', '."', $code));
-
-       // Compile QUOT and other non-HTML codes
-       $code = str_replace('{DOT}', '.',
-               str_replace('{SLASH}', '/',
-               str_replace('{QUOT}', "'",
-               str_replace('{DOLLAR}', '$',
-               str_replace('{OPEN_ANCHOR}', '(',
-               str_replace('{CLOSE_ANCHOR}', ')',
-               str_replace('{OPEN_SQR}', '[',
-               str_replace('{CLOSE_SQR}', ']',
-               str_replace('{PER}', '%',
-               $code
-       )))))))));
-
-       // Return compiled code
-       return $code;
-}
-
 // Function taken from user comments on www.php.net / function isInStringIgnoreCase()
 function isUrlValidSimple ($url) {
        // Prepare URL
@@ -2723,9 +1309,9 @@ function isUrlValidSimple ($url) {
                // Debug regex?
                if (isDebugRegularExpressionEnabled()) {
                        // @TODO Are these convertions still required?
-                       $pat = str_replace('.', "&#92;&#46;", $pat);
-                       $pat = str_replace('@', "&#92;&#64;", $pat);
-                       //* DEBUG: */ debugOutput($key."=&nbsp;" . $pat);
+                       $pat = str_replace('.', '&#92;&#46;', $pat);
+                       $pat = str_replace('@', '&#92;&#64;', $pat);
+                       //* DEBUG: */ debugOutput($key . '=&nbsp;' . $pat);
                } // END - if
 
                // Check if expression matches
@@ -2771,7 +1357,10 @@ function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
                                        // Read from source file
                                        $line = fgets ($fp, 1024);
 
-                                       if (strpos($line, $search) > -1) { $next = '0'; $found = true; }
+                                       if (strpos($line, $search) > -1) { 
+                                               $next = '0';
+                                               $found = true;
+                                       } // END - if
 
                                        if ($next > -1) {
                                                if ($next === $seek) {
@@ -2814,13 +1403,16 @@ function changeDataInFile ($FQFN, $comment, $prefix, $suffix, $DATA, $seek=0) {
        // An error was detected!
        return false;
 }
+
 // Send notification to admin
-function sendAdminNotification ($subject, $templateName, $content=array(), $userid = '0') {
+function sendAdminNotification ($subject, $templateName, $content = array(), $userid = '0') {
        if ((isExtensionInstalledAndNewer('admins', '0.4.1')) && (function_exists('sendAdminsEmails'))) {
                // Send new way
+               /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'admins=Y,subject=' . $subject . ',templateName=' . $templateName);
                sendAdminsEmails($subject, $templateName, $content, $userid);
        } else {
-               // Send out out-dated way
+               // Send out-dated way
+               /* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'admins=N,subject=' . $subject . ',templateName=' . $templateName);
                $message = loadEmailTemplate($templateName, $content, $userid);
                sendAdminEmails($subject, $message);
        }
@@ -2834,9 +1426,7 @@ function logDebugMessage ($funcFile, $line, $message, $force=true) {
                $message = str_replace("\r", '', str_replace("\n", '', $message));
 
                // Log this message away
-               $fp = fopen(getConfig('CACHE_PATH') . 'debug.log', 'a') or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot write logfile debug.log!');
-               fwrite($fp, date('d.m.Y|H:i:s', time()) . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message . "\n");
-               fclose($fp);
+               appendLineToFile(getPath() . getCachePath() . 'debug.log', generateDateTime(time(), '4') . '|' . getModule(false) . '|' . basename($funcFile) . '|' . $line . '|' . $message);
        } // END - if
 }
 
@@ -2874,7 +1464,7 @@ function handleExtraValues ($filterFunction, $value, $extraValue) {
 }
 
 // Converts timestamp selections into a timestamp
-function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
+function convertSelectionsToEpocheTime (array &$postData, array &$DATA, &$id, &$skip) {
        // Init test variable
        $skip  = false;
        $test2 = '';
@@ -2888,7 +1478,7 @@ function convertSelectionsToTimestamp (&$postData, &$DATA, &$id, &$skip) {
                $test = substr($id, 0, -3);
                if ((isset($postData[$test.'_ye'])) && (isset($postData[$test.'_mo'])) && (isset($postData[$test.'_we'])) && (isset($postData[$test.'_da'])) && (isset($postData[$test.'_ho'])) && (isset($postData[$test.'_mi'])) && (isset($postData[$test.'_se'])) && ($test != $test2)) {
                        // Generate timestamp
-                       $postData[$test] = createTimestampFromSelections($test, $postData);
+                       $postData[$test] = createEpocheTimeFromSelections($test, $postData);
                        $DATA[] = sprintf("`%s`='%s'", $test, $postData[$test]);
                        $GLOBALS['skip_config'][$test] = true;
 
@@ -2940,9 +1530,9 @@ function handleLoginFailures ($accessLevel) {
                // Ignore zero values
                if (getSession('mailer_' . $accessLevel . '_failures') > 0) {
                        // Non-guest has login failures found, get both data and prepare it for template
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "accessLevel={$accessLevel}<br />");
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'accessLevel=' . $accessLevel . '<br />');
                        $content = array(
-                               'login_failures' => getSession('mailer_' . $accessLevel . '_failures'),
+                               'login_failures' => 'mailer_' . $accessLevel . '_failures',
                                'last_failure'   => generateDateTime(getSession('mailer_' . $accessLevel . '_last_failure'), 2)
                        );
 
@@ -2975,7 +1565,7 @@ function rebuildCache ($cache, $inc = '', $force = false) {
                // Include file given?
                if (!empty($inc)) {
                        // Construct FQFN
-                       $inc = sprintf("inc/loader/load_cache-%s.php", $inc);
+                       $inc = sprintf("inc/loader/load-%s.php", $inc);
 
                        // Is the include there?
                        if (isIncludeReadable($inc)) {
@@ -2983,20 +1573,20 @@ function rebuildCache ($cache, $inc = '', $force = false) {
                                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "inc={$inc} - LOADED!<br />");
                                loadInclude($inc);
                        } else {
-                               // Include not found!
-                               logDebugMessage(__FUNCTION__, __LINE__, "Include {$inc} not found. cache={$cache}");
+                               // Include not found
+                               logDebugMessage(__FUNCTION__, __LINE__, 'Include ' . $inc . ' not found. cache=' . $cache);
                        }
                } // END - if
        } // END - if
 }
 
 // Determines the real remote address
-function determineRealRemoteAddress () {
+function determineRealRemoteAddress ($remoteAddr = false) {
        // Is a proxy in use?
-       if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
+       if ((isset($_SERVER['HTTP_X_FORWARDED_FOR'])) && (!$remoteAddr)) {
                // Proxy was used
                $address = $_SERVER['HTTP_X_FORWARDED_FOR'];
-       } elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
+       } elseif ((isset($_SERVER['HTTP_CLIENT_IP'])) && (!$remoteAddr)) {
                // Yet, another proxy
                $address = $_SERVER['HTTP_CLIENT_IP'];
        } else {
@@ -3016,9 +1606,11 @@ function determineRealRemoteAddress () {
 
 // Adds a bonus mail to the queue
 // This is a high-level function!
-function addNewBonusMail ($data, $mode = '', $output=true) {
+function addNewBonusMail ($data, $mode = '', $output = true) {
        // Use mode from data if not set and availble ;-)
-       if ((empty($mode)) && (isset($data['mode']))) $mode = $data['mode'];
+       if ((empty($mode)) && (isset($data['mode']))) {
+               $mode = $data['mode'];
+       } // END - if
 
        // Generate receiver list
        $receiver = generateReceiverList($data['cat'], $data['receiver'], $mode);
@@ -3040,11 +1632,11 @@ function addNewBonusMail ($data, $mode = '', $output=true) {
 
                // Mail inserted into bonus pool
                if ($output === true) {
-                       loadTemplate('admin_settings_saved', false, '{--ADMIN_BONUS_SEND--}');
+                       displayMessage('{--ADMIN_BONUS_SEND--}');
                } // END - if
        } elseif ($output === true) {
                // More entered than can be reached!
-               loadTemplate('admin_settings_saved', false, '{--ADMIN_MORE_SELECTED--}');
+               displayMessage('{--ADMIN_MORE_SELECTED--}');
        } else {
                // Debug log
                logDebugMessage(__FUNCTION__, __LINE__, 'cat=' . $data['cat'] . ',receiver=' . $data['receiver'] . ',data=' . base64_encode(serialize($data)) . ' More selected, than available!');
@@ -3054,63 +1646,74 @@ function addNewBonusMail ($data, $mode = '', $output=true) {
 // Determines referal id and sets it
 function determineReferalId () {
        // Skip this in non-html-mode and outside ref.php
-       if ((getOutputMode() != 0) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) return false;
+       if ((!isHtmlOutputMode()) && (basename($_SERVER['PHP_SELF']) != 'ref.php')) {
+               return false;
+       } // END - if
 
        // Check if refid is set
-       if ((isset($GLOBALS['refid'])) && ($GLOBALS['refid'] > 0)) {
+       if (isReferalIdValid()) {
                // This is fine...
-       } elseif ((isGetRequestParameterSet('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(getRequestParameter('user'));
        } elseif (isPostRequestParameterSet('refid')) {
-               // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
-               $GLOBALS['refid'] = secureString(postRequestParameter('refid'));
+               // Get referal id from POST element refid
+               setReferalId(secureString(postRequestParameter('refid')));
        } elseif (isGetRequestParameterSet('refid')) {
-               // Get referal id from variable refid (so I hope this makes my script more compatible to other scripts)
-               $GLOBALS['refid'] = secureString(getRequestParameter('refid'));
+               // Get referal id from GET parameter refid
+               setReferalId(secureString(getRequestParameter('refid')));
        } elseif (isGetRequestParameterSet('ref')) {
                // Set refid=ref (the referal link uses such variable)
-               $GLOBALS['refid'] = secureString(getRequestParameter('ref'));
-       } elseif ((isSessionVariableSet('refid')) && (getSession('refid') != 0)) {
+               setReferalId(secureString(getRequestParameter('ref')));
+       } elseif ((isGetRequestParameterSet('user')) && (basename($_SERVER['PHP_SELF']) == 'click.php')) {
+               // The variable user comes from  click.php
+               setReferalId(bigintval(getRequestParameter('user')));
+       } elseif ((isSessionVariableSet('refid')) && (isValidUserId(getSession('refid')))) {
                // Set session refid als global
-               $GLOBALS['refid'] = bigintval(getSession('refid'));
-       } elseif ((isExtensionInstalledAndNewer('user', '0.3.4')) && (getConfig('select_user_zero_refid') == 'Y')) {
+               setReferalId(bigintval(getSession('refid')));
+       } elseif (isRandomReferalIdEnabled()) {
                // Select a random user which has confirmed enougth mails
-               $GLOBALS['refid'] = determineRandomReferalId();
-       } elseif ((isExtensionInstalledAndNewer('sql_patches', '0.1.2')) && (getConfig('def_refid') > 0)) {
+               setReferalId(determineRandomReferalId());
+       } elseif ((isExtensionInstalledAndNewer('sql_patches', '0.1.2')) && (isValidUserId(getDefRefid()))) {
                // Set default refid as refid in URL
-               $GLOBALS['refid'] = getConfig('def_refid');
+               setReferalId(getDefRefid());
        } else {
                // No default id when sql_patches is not installed or none set
-               $GLOBALS['refid'] = '0';
+               setReferalId(null);
        }
 
        // Set cookie when default refid > 0
-       if (!isSessionVariableSet('refid') || (!empty($GLOBALS['refid'])) || ((getSession('refid') == '0') && (isConfigEntrySet('def_refid')) && (getConfig('def_refid') > 0))) {
+       if (!isSessionVariableSet('refid') || (!isValidUserId(getReferalId())) || ((!isValidUserId(getSession('refid'))) && (isExtensionInstalledAndNewer('sql_patches', '0.1.2')) && (isValidUserId(getDefRefid())))) {
                // Default is not found
                $found = false;
 
                // Do we have nickname or userid set?
-               if ((isExtensionActive('nickname')) && (isNicknameUsed($GLOBALS['refid']))) {
+               if ((isExtensionActive('nickname')) && (isNicknameUsed(getReferalId()))) {
                        // Nickname in URL, so load the id
-                       $found = fetchUserData($GLOBALS['refid'], 'nickname');
-               } elseif ($GLOBALS['refid'] > 0) {
+                       $found = fetchUserData(getReferalId(), 'nickname');
+
+                       // If we found it, use the userid as referal id
+                       if ($found === true) {
+                               // Set the userid as 'refid'
+                               setReferalId(getUserData('userid'));
+                       } // END - if
+               } elseif (isValidUserId(getReferalId())) {
                        // Direct userid entered
-                       $found = fetchUserData($GLOBALS['refid']);
+                       $found = fetchUserData(getReferalId());
                }
 
                // Is the record valid?
-               if ((($found === false) || (!isUserDataValid())) && (isConfigEntrySet('def_refid'))) {
+               if ((($found === false) || (!isUserDataValid())) && (isExtensionInstalledAndNewer('sql_patches', '0.1.2'))) {
                        // No, then reset referal id
-                       $GLOBALS['refid'] = getConfig('def_refid');
+                       setReferalId(getDefRefid());
                } // END - if
 
                // Set cookie
-               setSession('refid', $GLOBALS['refid']);
-       } // END - if
+               setSession('refid', getReferalId());
+       } elseif (!isReferalIdValid()) {
+               // Not valid!
+               setSession('refid', 0);
+       }
 
        // Return determined refid
-       return $GLOBALS['refid'];
+       return getReferalId();
 }
 
 // Enables the reset mode and runs it
@@ -3122,6 +1725,15 @@ function doReset () {
        runFilterChain('reset');
 }
 
+// Enables the reset mode (hourly, weekly and monthly) and runs it
+function doHourly () {
+       // Enable the hourly reset mode
+       $GLOBALS['hourly_enabled'] = true;
+
+       // Run filters (one always!)
+       runFilterChain('hourly');
+}
+
 // Our shutdown-function
 function shutdown () {
        // Call the filter chain 'shutdown'
@@ -3133,7 +1745,7 @@ function shutdown () {
                SQL_CLOSE(__FUNCTION__, __LINE__);
        } elseif (!isInstallationPhase()) {
                // No database link
-               addFatalMessage(__FUNCTION__, __LINE__, getMessage('NO_DB_LINK_SHUTDOWN'));
+               addFatalMessage(__FUNCTION__, __LINE__, '{--NO_DB_LINK_SHUTDOWN--}');
        }
 
        // Stop executing here
@@ -3148,7 +1760,9 @@ function initMemberId () {
 // Setter for member id
 function setMemberId ($memberid) {
        // We should not set member id to zero
-       if ($memberid == '0') debug_report_bug(__FUNCTION__, __LINE__, 'Userid should not be set zero.');
+       if ($memberid == '0') {
+               debug_report_bug(__FUNCTION__, __LINE__, 'Userid should not be set zero.');
+       } // END - if
 
        // Set it secured
        $GLOBALS['member_id'] = bigintval($memberid);
@@ -3174,23 +1788,6 @@ function isMemberIdSet () {
        return (isset($GLOBALS['member_id']));
 }
 
-// Handle message codes from URL
-function handleCodeMessage () {
-       if (isGetRequestParameterSet('code')) {
-               // Default extension is 'unknown'
-               $ext = 'unknown';
-
-               // Is extension given?
-               if (isGetRequestParameterSet('ext')) $ext = getRequestParameter('ext');
-
-               // Convert the 'code' parameter from URL to a human-readable message
-               $message = getMessageFromErrorCode(getRequestParameter('code'));
-
-               // Load message template
-               loadTemplate('message', false, $message);
-       } // END - if
-}
-
 // Setter for extra title
 function setExtraTitle ($extraTitle) {
        $GLOBALS['extra_title'] = $extraTitle;
@@ -3213,74 +1810,6 @@ 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
-               debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
-       } // END - if
-
-       // Default message
-       $message = getMaskedMessage('EXTENSION_PROBLEM_EXT_INACTIVE', $ext_name);
-
-       // Is an admin logged in?
-       if (isAdmin()) {
-               // Then output admin message
-               $message = getMaskedMessage('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
-               debug_report_bug(__FUNCTION__, __LINE__, 'Parameter ext is empty. This should not happen.');
-       } // END - if
-
-       // Default message
-       $message = getMaskedMessage('EXTENSION_PROBLEM_EXTENSION_NOT_INSTALLED', $ext_name);
-
-       // Is an admin logged in?
-       if (isAdmin()) {
-               // Then output admin message
-               $message = getMaskedMessage('ADMIN_EXTENSION_PROBLEM_EXTENSION_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!
-                       logDebugMessage(__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;
-}
-
 // Reads a directory recursively by default and searches for files not matching
 // an exclusion pattern. You can now keep the exclusion pattern empty for reading
 // a whole directory.
@@ -3291,12 +1820,12 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad
        $excludeArray[] = '.svn';
        $excludeArray[] = '.htaccess';
 
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix} - Entered!");
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ' - Entered!');
        // Init includes
        $files = array();
 
        // Open directory
-       $dirPointer = opendir(getConfig('PATH') . $baseDir) or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
+       $dirPointer = opendir(getPath() . $baseDir) or debug_report_bug(__FUNCTION__, __LINE__, 'Cannot read directory ' . basename($baseDir) . '.');
 
        // Read all entries
        while ($baseFile = readdir($dirPointer)) {
@@ -3309,7 +1838,7 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad
 
                // Construct include filename and FQFN
                $fileName = $baseDir . $baseFile;
-               $FQFN = getConfig('PATH') . $fileName;
+               $FQFN = getPath() . $fileName;
 
                // Remove double slashes
                $FQFN = str_replace('//', '/', $FQFN);
@@ -3332,47 +1861,44 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad
 
                        // And skip further processing
                        continue;
-               } elseif (substr($baseFile, 0, strlen($prefix)) != $prefix) {
+               } elseif (!isFilePrefixFound($baseFile, $prefix)) {
                        // Skip this file
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid prefix in file " . $baseFile . ", prefix=" . $prefix);
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid prefix in file ' . $baseFile . ', prefix=' . $prefix);
                        continue;
                } elseif ((!empty($suffix)) && (substr($baseFile, -(strlen($suffix . $extension)), (strlen($suffix . $extension))) != $suffix . $extension)) {
                        // Skip wrong suffix as well
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "Invalid suffix in file " . $baseFile . ", suffix=" . $suffix);
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Invalid suffix in file ' . $baseFile . ', suffix=' . $suffix);
                        continue;
                } elseif (!isFileReadable($FQFN)) {
                        // Not readable so skip it
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "File " . $FQFN . " is not readable!");
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'File ' . $FQFN . ' is not readable!');
                        continue;
                }
 
+               // Get file' extension (last 4 chars)
+               $fileExtension = substr($baseFile, -4, 4);
+
                // Is the file a PHP script or other?
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, "baseDir={$baseDir},prefix={$prefix},baseFile={$baseFile}");
-               if ((substr($baseFile, -4, 4) == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'baseDir=' . $baseDir . ',prefix=' . $prefix . ',baseFile=' . $baseFile);
+               if (($fileExtension == '.php') || (($fileIncludeDirs === true) && (isDirectory($FQFN)))) {
                        // Is this a valid include file?
                        if ($extension == '.php') {
                                // Remove both for extension name
                                $extName = substr($baseFile, strlen($prefix), -4);
 
-                               // Is the extension valid and active?
-                               if (isExtensionNameValid($extName)) {
-                                       // Then add this file
-                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Extension entry ' . $baseFile . ' added.');
+                               // Add file with or without base path
+                               if ($addBaseDir === true) {
+                                       // With base path
                                        $files[] = $fileName;
                                } else {
-                                       // Add non-extension files as well
-                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Regular entry ' . $baseFile . ' added.');
-                                       if ($addBaseDir === true) {
-                                               $files[] = $fileName;
-                                       } else {
-                                               $files[] = $baseFile;
-                                       }
+                                       // No base path
+                                       $files[] = $baseFile;
                                }
                        } else {
                                // We found .php file but should not search for them, why?
-                               debug_report_bug(__FUNCTION__, __LINE__, 'We should find files with extension=' . $extension . ', but we found a PHP script.');
+                               debug_report_bug(__FUNCTION__, __LINE__, 'We should find files with extension=' . $extension . ', but we found a PHP script. (baseFile=' . $baseFile . ')');
                        }
-               } elseif (substr($baseFile, -4, 4) == $extension) {
+               } elseif ($fileExtension == $extension) {
                        // Other, generic file found
                        $files[] = $fileName;
                }
@@ -3389,6 +1915,12 @@ function getArrayFromDirectory ($baseDir, $prefix, $fileIncludeDirs = false, $ad
        return $files;
 }
 
+// Checks wether $prefix is found in $fileName
+function isFilePrefixFound ($fileName, $prefix) {
+       // @TODO Find a way to cache this
+       return (substr($fileName, 0, strlen($prefix)) == $prefix);
+}
+
 // Maps a module name into a database table name
 function mapModuleToTable ($moduleName) {
        // Map only these, still lame code...
@@ -3406,19 +1938,10 @@ function mapModuleToTable ($moduleName) {
 
 // Add SQL debug data to array for later output
 function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
-       // Already executed?
-       if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
-               // Then abort here, we don't need to profile a query twice
-               return;
-       } // END - if
-
-       // Remeber this as profiled (or not, but we don't care here)
-       $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
-
        // Do we have cache?
        if (!isset($GLOBALS['debug_sql_available'])) {
                // Check it and cache it in $GLOBALS
-               $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isExtensionInstalledAndNewer('other', '0.2.2')) && (getConfig('display_debug_sqls') == 'Y'));
+               $GLOBALS['debug_sql_available'] = ((isConfigurationLoaded()) && (isDisplayDebugSqlEnabled()));
        } // END - if
        
        // Don't execute anything here if we don't need or ext-other is missing
@@ -3426,6 +1949,15 @@ function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
                return;
        } // END - if
 
+       // Already executed?
+       if (isset($GLOBALS['debug_sqls'][$F][$L][$sqlString])) {
+               // Then abort here, we don't need to profile a query twice
+               return;
+       } // END - if
+
+       // Remeber this as profiled (or not, but we don't care here)
+       $GLOBALS['debug_sqls'][$F][$L][$sqlString] = true;
+
        // Generate record
        $record = array(
                'num_rows' => SQL_NUMROWS($result),
@@ -3442,12 +1974,20 @@ function addSqlToDebug ($result, $sqlString, $timing, $F, $L) {
 
 // Initializes the cache instance
 function initCacheInstance () {
+       // Check for double-initialization
+       if (isset($GLOBALS['cache_instance'])) {
+               // This should not happen and must be fixed
+               debug_report_bug(__FUNCTION__, __LINE__, 'Double initialization of cache system detected. cache_instance[]=' . gettype($GLOBALS['cache_instance']));
+       } // END - if
+
        // Load include for CacheSystem class
        loadIncludeOnce('inc/classes/cachesystem.class.php');
 
        // Initialize cache system only when it's needed
        $GLOBALS['cache_instance'] = new CacheSystem();
-       if ($GLOBALS['cache_instance']->getStatus() != 'done') {
+
+       // Did it work?
+       if ($GLOBALS['cache_instance']->getStatusCode() != 'done') {
                // Failed to initialize cache sustem
                addFatalMessage(__FUNCTION__, __LINE__, '(<font color="#0000aa">' . __LINE__ . '</font>): {--CACHE_CANNOT_INITIALIZE--}');
        } // END - if
@@ -3468,300 +2008,11 @@ function getMessageFromIndexedArray ($message, $pos, $array) {
        return $ret;
 }
 
-// Print code with line numbers
-function linenumberCode ($code)    {
-       if (!is_array($code)) $codeE = explode("\n", $code); else $codeE = $code;
-       $count_lines = count($codeE);
-
-       $r = 'Line | Code:<br />';
-       foreach($codeE as $line => $c) {
-               $r .= '<div class="line"><span class="linenum">';
-               if ($count_lines == 1) {
-                       $r .= 1;
-               } else {
-                       $r .= ($line == ($count_lines - 1)) ? '' :  ($line+1);
-               }
-               $r .= '</span>|';
-
-               // Add code
-               $r .= '<span class="linetext">' . htmlentities($c) . '</span></div>';
-       }
-
-       return '<div class="code">' . $r . '</div>';
-}
-
 // Convert ';' to ', ' for e.g. receiver list
 function convertReceivers ($old) {
        return str_replace(';', ', ', $old);
 }
 
-// Determines the right page title
-function determinePageTitle () {
-       // Config and database connection valid?
-       if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
-               // Init title
-               $TITLE = '';
-
-               // Title decoration enabled?
-               if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_left') != '')) $TITLE .= trim(getConfig('title_left')) . ' ';
-
-               // Do we have some extra title?
-               if (isExtraTitleSet()) {
-                       // Then prepent it
-                       $TITLE .= getExtraTitle() . ' by ';
-               } // END - if
-
-               // Add main title
-               $TITLE .= getConfig('MAIN_TITLE');
-
-               // Add title of module? (middle decoration will also be added!)
-               if ((getConfig('enable_mod_title') == 'Y') || ((!isWhatSet()) && (!isActionSet())) || (getModule() == 'admin')) {
-                       $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getModuleTitle(getModule());
-               } // END - if
-
-               // Add title from what file
-               $mode = '';
-               if (getModule() == 'login') $mode = 'member';
-               elseif (getModule() == 'index') $mode = 'guest';
-               if ((!empty($mode)) && (getConfig('enable_what_title') == 'Y')) $TITLE .= ' ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu($mode, getWhat());
-
-               // Add title decorations? (right)
-               if ((getConfig('enable_title_deco') == 'Y') && (getConfig('title_right') != '')) $TITLE .= ' ' . trim(getConfig('title_right'));
-
-               // Remember title in constant for the template
-               $pageTitle = $TITLE;
-       } elseif ((isInstalled()) && (isAdminRegistered())) {
-               // Installed, admin registered but no ext-sql_patches
-               $pageTitle = '[-- ' . getConfig('MAIN_TITLE') . ' - ' . getModuleTitle(getModule()) . ' --]';
-       } elseif ((isInstalled()) && (!isAdminRegistered())) {
-               // Installed but no admin registered
-               $pageTitle = getMessage('SETUP_OF_MAILER');
-       } elseif ((!isInstalled()) || (!isAdminRegistered())) {
-               // Installation mode
-               $pageTitle = getMessage('INSTALLATION_OF_MAILER');
-       } else {
-               // Configuration not found!
-               $pageTitle = getMessage('NO_CONFIG_FOUND_TITLE');
-
-               // Do not add the fatal message in installation mode
-               if ((!isInstalling()) && (!isConfigurationLoaded())) addFatalMessage(__FUNCTION__, __LINE__, getMessage('NO_CONFIG_FOUND'));
-       }
-
-       // Return title
-       return decodeEntities($pageTitle);
-}
-
-// Checks wethere there is a cache file there. This function is cached.
-function isTemplateCached ($template) {
-       // Do we have cached this result?
-       if (!isset($GLOBALS['template_cache'][$template])) {
-               // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
-
-               // Is it there?
-               $GLOBALS['template_cache'][$template] = isFileReadable($FQFN);
-       } // END - if
-
-       // Return it
-       return $GLOBALS['template_cache'][$template];
-}
-
-// Flushes non-flushed template cache to disk
-function flushTemplateCache ($template, $eval) {
-       // Is this cache flushed?
-       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template) === false) && ($eval != '404')) {
-               // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
-
-               // And flush it
-               writeToFile($FQFN, $eval, true);
-       } // END - if
-}
-
-// Reads a template cache
-function readTemplateCache ($template) {
-       // Check it again
-       if ((isDebuggingTemplateCache()) || (!isTemplateCached($template))) {
-               // This should not happen
-               debug_report_bug('Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
-       } // END - if
-
-       // Is it cached?
-       if (!isset($GLOBALS['template_eval'][$template])) {
-               // Generate FQFN
-               $FQFN = generateCacheFqfn($template);
-
-               // And read from it
-               $GLOBALS['template_eval'][$template] = readFromFile($FQFN);
-       } // END - if
-
-       // And return it
-       return $GLOBALS['template_eval'][$template];
-}
-
-// Escapes quotes (default is only double-quotes)
-function escapeQuotes ($str, $single = false) {
-       // Should we escape all?
-       if ($single === true) {
-               // Escape all (including null)
-               $str = addslashes($str);
-       } else {
-               // Escape only double-quotes but prevent double-quoting
-               $str = str_replace("\\\\", "\\", str_replace('"', "\\\"", $str));
-       }
-
-       // Return the escaped string
-       return $str;
-}
-
-// Escapes the JavaScript code, prevents \r and \n becoming char 10/13
-function escapeJavaScriptQuotes ($str) {
-       // Replace all double-quotes and secure back-ticks
-       $str = str_replace('"', '\"', str_replace("\\", '{BACK}', $str));
-
-       // Return it
-       return $str;
-}
-
-// Send out mails depending on the 'mod/modes' combination
-// @TODO Lame description for this function
-function sendModeMails ($mod, $modes) {
-       // Load hash
-       if (fetchUserData(getMemberId())) {
-               // Extract salt from cookie
-               $salt = substr(getSession('u_hash'), 0, -40);
-
-               // Now let's compare passwords
-               $hash = encodeHashForCookie(getUserData('password'));
-
-               // Does the hash match or should we change it?
-               if (($hash == getSession('u_hash')) || (postRequestParameter('pass1') == postRequestParameter('pass2'))) {
-                       // Load the data
-                       $content = getUserDataArray();
-
-                       // Clear/init the content variable
-                       $content['message'] = '';
-
-                       // Which mail?
-                       // @TODO Move this in a filter
-                       switch ($mod) {
-                               case 'mydata':
-                                       foreach ($modes as $mode) {
-                                               switch ($mode) {
-                                                       case 'normal': break; // Do not add any special lines
-                                                       case 'email': // Email was changed!
-                                                               $content['message'] = getMessage('MEMBER_CHANGED_EMAIL').": ".postRequestParameter('old_email')."\n";
-                                                               break;
-
-                                                       case 'pass': // Password was changed
-                                                               $content['message'] = getMessage('MEMBER_CHANGED_PASS')."\n";
-                                                               break;
-
-                                                       default:
-                                                               logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
-                                                               $content['message'] = getMessage('MEMBER_UNKNOWN_MODE') . ': ' . $mode . "\n\n";
-                                                               break;
-                                               } // END - switch
-                                       } // END - foreach
-
-                                       if (isExtensionActive('country')) {
-                                               // Replace code with description
-                                               $content['country'] = generateCountryInfo(postRequestParameter('country_code'));
-                                       } // END - if
-
-                                       // Merge content with data from POST
-                                       $content = merge_array($content, postRequestArray());
-
-                                       // Load template
-                                       $message = loadEmailTemplate('member_mydata_notify', $content, getMemberId());
-
-                                       if (getConfig('admin_notify') == 'Y') {
-                                               // The admin needs to be notified about a profile change
-                                               $message_admin = 'admin_mydata_notify';
-                                               $sub_adm   = getMessage('ADMIN_CHANGED_DATA');
-                                       } else {
-                                               // No mail to admin
-                                               $message_admin = '';
-                                               $sub_adm   = '';
-                                       }
-
-                                       // Set subject lines
-                                       $sub_mem = getMessage('MEMBER_CHANGED_DATA');
-
-                                       // Output success message
-                                       $content = '<span class="member_done">{--MYDATA_MAIL_SENT--}</span>';
-                                       break;
-
-                               default: // Unsupported module!
-                                       logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unsupported module %s detected.", $mod));
-                                       $content = '<span class="member_failed">{--UNKNOWN_MODULE--}</span>';
-                                       break;
-                       } // END - switch
-               } else {
-                       // Passwords mismatch
-                       $content = '<span class="member_failed">{--MEMBER_PASSWORD_ERROR--}</span>';
-               }
-       } else {
-               // Could not load profile
-               $content = '<span class="member_failed">{--MEMBER_CANNOT_LOAD_PROFILE--}</span>';
-       }
-
-       // Send email to user if required
-       if ((!empty($sub_mem)) && (!empty($message))) {
-               // Send member mail
-               sendEmail($content['email'], $sub_mem, $message);
-       } // END - if
-
-       // Send only if no other error has occured
-       if (empty($content)) {
-               if ((!empty($sub_adm)) && (!empty($message_admin))) {
-                       // Send admin mail
-                       sendAdminNotification($sub_adm, $message_admin, $content, getMemberId());
-               } elseif (getConfig('admin_notify') == 'Y') {
-                       // Cannot send mails to admin!
-                       $content = getMessage('CANNOT_SEND_ADMIN_MAILS');
-               } else {
-                       // No mail to admin
-                       $content = '<span class="member_done">{--MYDATA_MAIL_SENT--}</span>';
-               }
-       } // END - if
-
-       // Load template
-       loadTemplate('admin_settings_saved', false, $content);
-}
-
-// Generates a 'selection box' from given array
-function generateSelectionBoxFromArray ($options, $name, $optionValue, $optionContent = '', $extraName = '') {
-       // Start the output
-       $OUT = '<select name="' . $name . '" size="1" class="admin_select">
-<option value="X" disabled="disabled">{--PLEASE_SELECT--}</option>';
-
-       // Walk through all options
-       foreach ($options as $option) {
-               // Add the <option> entry
-               if (empty($optionContent)) {
-                       // ... from template
-                       $OUT .= loadTemplate('select_' . $name . $extraName . '_option', true, $option);
-               } else {
-                       // Direct HTML code
-                       $OUT .= '<option value="' . $option[$optionValue] . '">' . $option[$optionContent] . '</option>';
-               }
-       } // END - foreach
-
-       // Finish selection box
-       $OUT .= '</select>';
-
-       // Prepare output
-       $content = array(
-               'selection_box' => $OUT,
-               'module'        => getModule(),
-               'what'          => getWhat()
-       );
-
-       // Load template and return it
-       return loadTemplate('select_' . $name . $extraName . '_box', true, $content);
-}
-
 // Get a module from filename and access level
 function getModuleFromFileName ($file, $accessLevel) {
        // Default is 'invalid';
@@ -3791,7 +2042,10 @@ function getModuleFromFileName ($file, $accessLevel) {
 // Encodes an URL for adding session id, etc.
 function encodeUrl ($url, $outputMode = '0') {
        // Do we have already have a PHPSESSID inside or view.php is called? Then abort here
-       if ((strpos($url, session_name()) !== false) || (getOutputMode() == -3)) return $url;
+       if ((strpos($url, session_name()) !== false) || (isRawOutputMode())) {
+               // Raw output mode detected or session_name() found in URL
+               return $url;
+       } // END - if
 
        // Do we have a valid session?
        if (((!isset($GLOBALS['valid_session'])) || ($GLOBALS['valid_session'] === false) || (!isset($_COOKIE[session_name()]))) && (isSpider() === false)) {
@@ -3801,8 +2055,8 @@ function encodeUrl ($url, $outputMode = '0') {
                if (strpos($url, '?') === false) {
                        // No question mark
                        $seperator = '?';
-               } elseif ((getOutputMode() != '0') || ($outputMode != '0')) {
-                       // Non-HTML mode
+               } elseif ((!isHtmlOutputMode()) || ($outputMode != '0')) {
+                       // Non-HTML mode (or forced non-HTML mode
                        $seperator = '&';
                }
 
@@ -3813,7 +2067,7 @@ function encodeUrl ($url, $outputMode = '0') {
        } // END - if
 
        // Add {?URL?} ?
-       if ((substr($url, 0, strlen(getConfig('URL'))) != getConfig('URL')) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
+       if ((substr($url, 0, strlen(getUrl())) != getUrl()) && (substr($url, 0, 7) != '{?URL?}') && (substr($url, 0, 7) != 'http://') && (substr($url, 0, 8) != 'https://')) {
                // Add it
                $url = '{?URL?}/' . $url;
        } // END - if
@@ -3824,79 +2078,19 @@ function encodeUrl ($url, $outputMode = '0') {
 
 // Simple check for spider
 function isSpider () {
-       // Get the UA
-       $userAgent = strtolower(detectUserAgent(true));
+       // Get the UA and trim it down
+       $userAgent = trim(strtolower(detectUserAgent(true)));
 
        // It should not be empty, if so it is better a spider/bot
-       if (empty($userAgent)) return true;
+       if (empty($userAgent)) {
+               // It is a spider/bot
+               return true;
+       } // END - if
 
        // Is it a spider?
        return ((strpos($userAgent, 'spider') !== false) || (strpos($userAgent, 'slurp') !== false) || (strpos($userAgent, 'bot') !== false) || (strpos($userAgent, 'archiver') !== false));
 }
 
-// Prepares the header for HTML output
-function loadHtmlHeader () {
-       // Run two filters:
-       // 1.) pre_page_header (mainly loads the page_header template and includes
-       //     meta description)
-       runFilterChain('pre_page_header');
-
-       // Here can be something be added, but normally one of the two filters
-       // around this line should do the job for you.
-
-       // 2.) post_page_header (mainly to load stylesheet, extra JavaScripts and
-       //     to close the head-tag)
-       // Include more header data here
-       runFilterChain('post_page_header');
-}
-
-// Adds page header and footer to output array element
-function addPageHeaderFooter () {
-       // Init output
-       $OUT = '';
-
-       // Add them all together. This is maybe to simple
-       foreach (array('page_header', 'output', 'page_footer') as $pagePart) {
-               // Add page part if set
-               if (isset($GLOBALS[$pagePart])) $OUT .= $GLOBALS[$pagePart];
-       } // END - foreach
-
-       // Transfer $OUT to 'output'
-       $GLOBALS['output'] = $OUT;
-}
-
-// Generates meta description for current module and 'what' value
-function generateMetaDescriptionCode () {
-       // Only include from guest area and if sql_patches has correct version
-       if ((getModule() == 'index') && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
-               // Construct dynamic description
-               $DESCR = '{?MAIN_TITLE?} ' . trim(getConfig('title_middle')) . ' ' . getTitleFromMenu('guest', getWhat());
-
-               // Output it directly
-               $GLOBALS['page_header'] .= '<meta name="description" content="' . $DESCR . '" />';
-       } // END - if
-
-       // Remove depth
-       unset($GLOBALS['ref_level']);
-}
-
-// Generates an FQFN for template cache from the given template name
-function generateCacheFqfn ($template, $mode = 'html') {
-       // Is this cached?
-       if (!isset($GLOBALS['template_cache_fqfn'][$template])) {
-               // Generate the FQFN
-               $GLOBALS['template_cache_fqfn'][$template] = sprintf(
-                       "%s_compiled/%s/%s.tpl.cache",
-                       getConfig('CACHE_PATH'),
-                       $mode,
-                       $template
-               );
-       } // END - if
-
-       // Return it
-       return $GLOBALS['template_cache_fqfn'][$template];
-}
-
 // Function to search for the last modified file
 function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
        // Get dir as array
@@ -3911,7 +2105,7 @@ function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
        // Walk through all entries
        foreach ($ds as $d) {
                // Generate proper FQFN
-               $FQFN = str_replace('//', '/', getConfig('PATH') . $dir . '/' . $d);
+               $FQFN = str_replace('//', '/', getPath() . $dir . '/' . $d);
 
                // Is it a file and readable?
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'dir=' . $dir . ',d=' . $d);
@@ -3934,21 +2128,6 @@ function searchDirsRecursive ($dir, &$last_changed, $lookFor = 'Date') {
        } // END - foreach
 }
 
-// "Fixes" null or empty string to count of dashes
-function fixNullEmptyToDashes ($str, $num) {
-       // Use str as default
-       $return = $str;
-
-       // Is it empty?
-       if ((is_null($str)) || (trim($str) == '')) {
-               // Set it
-               $return = str_repeat('-', $num);
-       } // END - if
-
-       // Return final string
-       return $return;
-}
-
 // Handles the braces [] of a field (e.g. value of 'name' attribute)
 function handleFieldWithBraces ($field) {
        // Are there braces [] at the end?
@@ -3971,40 +2150,256 @@ function handleFieldWithBraces ($field) {
        return $field;
 }
 
-//////////////////////////////////////////////////
-// AUTOMATICALLY RE-GENERATED MISSING FUNCTIONS //
-//////////////////////////////////////////////////
-//
-if (!function_exists('html_entity_decode')) {
-       // Taken from documentation on www.php.net
-       function html_entity_decode ($string) {
-               $trans_tbl = get_html_translation_table(HTML_ENTITIES);
-               $trans_tbl = array_flip($trans_tbl);
-               return strtr($string, $trans_tbl);
+// Converts a userid so it can be used in SQL queries
+function makeZeroToNull ($number) {
+       // Is it a valid username?
+       if ((!is_null($number)) && ($number > 0)) {
+               // Always secure it
+               $number = bigintval($number);
+       } else {
+               // Is not valid or zero
+               $number = 'NULL';
        }
-} // END - if
 
-if (!function_exists('http_build_query')) {
-       // Taken from documentation on www.php.net, credits to Marco K. (Germany) and some light mods by R.Haeder
-       function http_build_query($data, $prefix = '', $sep = '', $key = '') {
-               $ret = array();
-               foreach ((array)$data as $k => $v) {
-                       if (is_int($k) && $prefix != null) {
-                               $k = urlencode($prefix . $k);
-                       } // END - if
+       // Return it
+       return $number;
+}
+
+// Capitalizes a string with underscores, e.g.: some_foo_string will become SomeFooString
+// Note: This function is cached
+function capitalizeUnderscoreString ($str) {
+       // Do we have cache?
+       if (!isset($GLOBALS[__FUNCTION__][$str])) {
+               // Init target string
+               $capitalized = '';
 
-                       if ((!empty($key)) || ($key === 0))  $k = $key . '[' . urlencode($k) . ']';
+               // Explode it with the underscore, but rewrite dashes to underscore before
+               $strArray = explode('_', str_replace('-', '_', $str));
 
-                       if (is_array($v) || is_object($v)) {
-                               array_push($ret, http_build_query($v, '', $sep, $k));
-                       } else {
-                               array_push($ret, $k.'='.urlencode($v));
-                       }
+               // "Walk" through all elements and make them lower-case but first upper-case
+               foreach ($strArray as $part) {
+                       // Capitalize the string part
+                       $capitalized .= firstCharUpperCase($part);
                } // END - foreach
 
-               if (empty($sep)) $sep = ini_get('arg_separator.output');
+               // Store the converted string in cache array
+               $GLOBALS[__FUNCTION__][$str] = $capitalized;
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__][$str];
+}
+
+// Generate admin links for mail order
+// mailType can be: 'mid' or 'bid'
+function generateAdminMailLinks ($mailType, $mailId) {
+       // Init variables
+       $OUT = '';
+       $table = '';
+
+       // Default column for mail status is 'data_type'
+       // @TODO Rename column data_type to e.g. mail_status
+       $statusColumn = 'data_type';
+
+       // Which mail do we have?
+       switch ($mailType) {
+               case 'bid': // Bonus mail
+                       $table = 'bonus';
+                       break;
+
+               case 'mid': // Member mail
+                       $table = 'pool';
+                       break;
+
+               default: // Handle unsupported types
+                       logDebugMessage(__FUNCTION__, __LINE__, 'Unsupported mail type ' . $mailType . ' for mailId=' . $mailId . ' detected.');
+                       $OUT = '<div align="center">{%message,ADMIN_UNSUPPORTED_MAIL_TYPE_DETECTED=' . $mailType . '%}</div>';
+                       break;
+       } // END - switch
+
+       // Is the mail type supported?
+       if (!empty($table)) {
+               // Query for the mail
+               $result = SQL_QUERY_ESC("SELECT `id`, `%s` AS `mail_status` FROM `{?_MYSQL_PREFIX?}_%s` WHERE `id`=%s LIMIT 1",
+                       array($statusColumn, $table, bigintval($mailId)), __FILE__, __LINE__);
+
+               // Do we have one entry there?
+               if (SQL_NUMROWS($result) == 1) {
+                       // Load the entry
+                       $content = SQL_FETCHARRAY($result);
+                       die('Unfinished area:<br />'.__FUNCTION__.':<br />content=<pre>'.print_r($content, true).'</pre>');
+               } // END - if
+
+               // Free result
+               SQL_FREERESULT($result);
+       } // END - if
 
-               return implode($sep, $ret);
+       // Return generated HTML code
+       return $OUT;
+}
+
+
+/**
+ * determine if a string can represent a number in hexadecimal
+ *
+ * @param      $hex    A string to check if it is hex-encoded
+ * @return     $foo    True if the string is a hex, otherwise false
+ * @author     Marques Johansson
+ * @link       http://php.net/manual/en/function.http-chunked-decode.php#89786
+ */
+function isHexadecimal ($hex) {
+       // Make it lowercase
+       $hex = strtolower(trim(ltrim($hex, '0')));
+
+       // Fix empty strings to zero
+       if (empty($hex)) {
+               $hex = 0;
+       } // END - if
+
+       // Simply compare decode->encode result with original
+       return ($hex == dechex(hexdec($hex)));
+}
+
+// Replace "\r" with "[r]" and "\n" with "[n]" and add a final new-line to make
+// them visible to the developer. Use this function to debug e.g. buggy HTTP
+// response handler functions.
+function replaceReturnNewLine ($str) {
+       return str_replace("\r", '[r]', str_replace("\n", '[n]
+', $str));
+}
+
+// Converts a given string by splitting it up with given delimiter similar to
+// explode(), but appending the delimiter again
+function stringToArray ($delimiter, $string) {
+       // Init array
+       $strArray = array();
+
+       // "Walk" through all entries
+       foreach (explode($delimiter, $string) as $split) {
+               //  Append the delimiter and add it to the array
+               $strArray[] = $split . $delimiter;
+       } // END - foreach
+
+       // Return array
+       return $strArray;
+}
+
+// Detects the prefix 'mb_' if a multi-byte string is given
+function detectMultiBytePrefix ($str) {
+       // Default is without multi-byte
+       $mbPrefix = '';
+
+       // Detect multi-byte (strictly)
+       if (mb_detect_encoding($str, 'auto', true) !== false) {
+               // With multi-byte encoded string
+               $mbPrefix = 'mb_';
+       } // END - if
+
+       // Return the prefix
+       return $mbPrefix;
+}
+
+// Searches the given array for a sub-string match and returns all found keys in an array
+function getArrayKeysFromSubStrArray ($heystack, array $needles, $offset = 0) {
+       // Init array for all found keys
+       $keys = array();
+
+       // Now check all entries
+       foreach ($needles as $key => $needle) {
+               // Do we have found a partial string?
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'heystack='.$heystack.',key='.$key.',needle='.$needle.',offset='.$offset);
+               if (strpos($heystack, $needle, $offset) !== false) {
+                       // Add the found key
+                       $keys[] = $key;
+               } // END - if
+       } // END - foreach
+
+       // Return the array
+       return $keys;
+}
+
+// Determines database column name from given subject and locked
+function determinePointsColumnFromSubjectLocked ($subject, $locked) {
+       // Default is 'normal' points
+       $pointsColumn = 'points';
+
+       // Which points, locked or normal?
+       if ($locked === true) {
+               $pointsColumn = 'locked_points';
+       } // END - if
+
+       // Prepare array for filter
+       $filterData = array(
+               'subject' => $subject,
+               'locked'  => $locked,
+               'column'  => $pointsColumn
+       );
+
+       // Run the filter
+       $filterData = runFilterChain('determine_points_column_name', $filterData);
+
+       // Extract column name from array
+       $pointsColumn = $filterData['column'];
+
+       // Return it
+       return $pointsColumn;
+}
+
+// Setter for referal id (no bigintval, or nicknames will fail!)
+function setReferalId ($refid) {
+       $GLOBALS['refid'] = $refid;
+}
+
+// Checks if 'refid' is valid
+function isReferalIdValid () {
+       return ((isset($GLOBALS['refid'])) && (getReferalId() !== NULL) && (getReferalId() > 0));
+}
+
+// Getter for referal id
+function getReferalId () {
+       return $GLOBALS['refid'];
+}
+
+// Converts a boolean variable into 'Y' for true and 'N' for false
+function convertBooleanToYesNo ($boolean) {
+       // Default is 'N'
+       $converted = 'N';
+       if ($boolean === true) {
+               // Set 'Y'
+               $converted = 'Y';
+       } // END - if
+
+       // Return it
+       return $converted;
+}
+
+// Translates task type to a human-readable version
+function translateTaskType ($taskType) {
+       // Construct message id
+       $messageId = 'ADMIN_TASK_TYPE_' . strtoupper($taskType) . '';
+
+       // Is the message id there?
+       if (isMessageIdValid($messageId)) {
+               // Then construct message
+               $message = '{--' . $messageId . '--}';
+       } else {
+               // Else it is an unknown task type
+               $message = '{%message,ADMIN_TASK_TYPE_UNKNOWN=' . $taskType . '%}';
+       } // END - if
+
+       // Return message
+       return $message;
+}
+
+//-----------------------------------------------------------------------------
+// Automatically re-created functions, all taken from user comments on www.php.net
+//-----------------------------------------------------------------------------
+if (!function_exists('html_entity_decode')) {
+       // Taken from documentation on www.php.net
+       function html_entity_decode ($string) {
+               $trans_tbl = get_html_translation_table(HTML_ENTITIES);
+               $trans_tbl = array_flip($trans_tbl);
+               return strtr($string, $trans_tbl);
        }
 } // END - if