Support all extensions in link, too
[mailer.git] / inc / template-functions.php
index f2ee3db151f1033477ae58616e07e930090b505b..4b6420a59f013706ed0e545a6329842f5762200a 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -41,8 +41,8 @@ if (!defined('__SECURITY')) {
 } // END - if
 
 // Wrapper until we merged to the EL branch
-function preCompileCode ($code, $template = '', $compiled = FALSE, $full = TRUE, $overwrite = FALSE) {
-       return compileCode($code, FALSE, TRUE, $full);
+function preCompileCode ($code, $full = TRUE) {
+       return compileCode($code, $full);
 }
 
 // Setter for 'is_template_html'
@@ -93,7 +93,7 @@ function getColorSwitchCode ($template) {
 }
 
 // Output HTML code directly or 'render' it. You addionally switch the new-line character off
-function outputHtml ($htmlCode, $newLine = TRUE) {
+function outputHtml ($htmlCode = NULL, $newLine = TRUE) {
        // Init output
        if (!isset($GLOBALS['__output'])) {
                $GLOBALS['__output'] = '';
@@ -101,7 +101,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) {
 
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'getOutputMode()=' . getOutputMode() . ',htmlCode(length)=' . strlen($htmlCode) . ',output(length)=' . strlen($GLOBALS['__output']));
        // Is there HTML-Code here?
-       if (!empty($htmlCode)) {
+       if ((!is_null($htmlCode)) && (!empty($htmlCode))) {
                // Yes, so we handle it as you have configured
                switch (getOutputMode()) {
                        case 'render':
@@ -112,7 +112,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) {
 
                                        // That's why you don't need any \n at the end of your HTML code... :-)
                                        if ($newLine === TRUE) {
-                                               outputRawCode(chr(10));
+                                               outputRawCode(PHP_EOL);
                                        } // END - if
                                } else {
                                        // Render mode for old or lame servers...
@@ -120,7 +120,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) {
 
                                        // That's why you don't need any \n at the end of your HTML code... :-)
                                        if ($newLine === TRUE) {
-                                               $GLOBALS['__output'] .= chr(10);
+                                               $GLOBALS['__output'] .= PHP_EOL;
                                        } // END - if
                                }
                                break;
@@ -135,7 +135,7 @@ function outputHtml ($htmlCode, $newLine = TRUE) {
                                // The same as above... ^
                                outputRawCode($htmlCode);
                                if ($newLine === TRUE) {
-                                       outputRawCode(chr(10));
+                                       outputRawCode(PHP_EOL);
                                } // END - if
                                break;
 
@@ -180,12 +180,24 @@ function outputHtml ($htmlCode, $newLine = TRUE) {
 // Compiles the final output
 function compileFinalOutput () {
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '__output(length)=' . strlen($GLOBALS['__output']) . ',getScriptOutputMode()=' . getScriptOutputMode() . ' - ENTERED!');
+       // Is this function called?
+       if (isset($GLOBALS[__FUNCTION__])) {
+               // Abort here
+               reportBug(__FUNCTION__, __LINE__, 'Double call of ' . __FUNCTION__ . ' causes problems with sent headers.');
+       } // END - if
+
+       // Mark this function as called
+       $GLOBALS[__FUNCTION__] = TRUE;
+
        // Add page header and footer
        addPageHeaderFooter();
        //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, '__output(length)=' . strlen($GLOBALS['__output']) . ' - After addPageHeaderFooter() call.');
 
-       // Do the final compilation
-       $GLOBALS['__output'] = compileUriCode(doFinalCompilation($GLOBALS['__output']));
+       // Do the final (general) compilation
+       $GLOBALS['__output'] = doFinalCompilation($GLOBALS['__output']);
+
+       // Compile any other things out
+       $GLOBALS['__output'] = compileUriCode($GLOBALS['__output']);
 
        // Extension 'rewrite' installed?
        if ((isExtensionActive('rewrite')) && (!isCssOutputMode())) {
@@ -223,26 +235,26 @@ function doFinalCompilation ($code, $insertComments = TRUE, $enableCodes = TRUE)
        enableTemplateHtml($insertComments);
 
        // Init counter
-       $count = 0;
+       $totalCompilations = 0;
 
        // Compile all out
-       while (((isInString('{--', $code)) || (isInString('{DQUOTE}', $code)) || (isInString('{?', $code)) || (isInString('{%', $code) !== FALSE)) && ($count < 7)) {
+       while (((isInString('{--', $code)) || (isInString('{DQUOTE}', $code)) || (isInString('{?', $code)) || (isInString('{%', $code) !== FALSE)) && ($totalCompilations < 7)) {
                // Init common variables
                $content = array();
                $newContent = '';
 
                // Compile it
-               //* DEBUG: */ debugOutput('<pre>'.linenumberCode($code).'</pre>');
-               $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($code), FALSE, TRUE, $enableCodes)) . '";';
-               //* DEBUG: */ if (!$insertComments) print('EVAL=<pre>'.linenumberCode($eval).'</pre>');
+               //* DEBUG: */ debugOutput('<pre>'.lineNumberCode($code).'</pre>');
+               $eval = '$newContent = "' . str_replace('{DQUOTE}', '"', compileCode(escapeQuotes($code), $enableCodes)) . '";';
+               //* DEBUG: */ if (!$insertComments) print('EVAL=<pre>'.lineNumberCode($eval).'</pre>');
                eval($eval);
-               //* DEBUG: */ if (!$insertComments) print('NEW=<pre>'.linenumberCode($newContent).'</pre>');
+               //* DEBUG: */ if (!$insertComments) print('NEW=<pre>'.lineNumberCode($newContent).'</pre>');
                //* DEBUG: */ die('<pre>'.encodeEntities($newContent).'</pre>');
 
                // Was that eval okay?
                if (empty($newContent)) {
                        // Something went wrong!
-                       reportBug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . linenumberCode($eval) . '</pre>', FALSE);
+                       reportBug(__FUNCTION__, __LINE__, 'Evaluation error:<pre>' . lineNumberCode($eval) . '</pre>', FALSE);
                } // END - if
 
                // Use it again
@@ -255,13 +267,14 @@ function doFinalCompilation ($code, $insertComments = TRUE, $enableCodes = TRUE)
                } // END - if
 
                // Count round
-               $count++;
+               $totalCompilations++;
        } // END - while
 
        // Add debugging data in HTML code, if mode is enabled
-       if ((isDebugModeEnabled()) && ($insertComments === TRUE) && ((isHtmlOutputMode()) || (isCssOutputMode()))) {
+       if ((isDebugModeEnabled()) && ($insertComments === TRUE) && (isHtmlOutputMode())) {
                // Add loop count
-               $code .= '<!-- Total compilation loop=' . $count . ' //-->';
+               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'isDebugModeEnabled()=' . intval(isDebugModeEnabled()) . ',insertComments=' . intval($insertComments) . ',isHtmlOutputMode()=' . intval(isHtmlOutputMode()));
+               $code .= '<!-- Total compilation loop=' . $totalCompilations . ' //-->';
        } // END - if
 
        // Return the compiled code
@@ -298,9 +311,12 @@ function loadTemplate ($template, $return = FALSE, $content = array(), $compileC
        $GLOBALS['current_template'] = $template;
 
        // Is there cache?
-       if ((!isDebuggingTemplateCache()) && (isTemplateCached('html', $template))) {
+       if ((!isDebugTemplateCacheEnabled()) && (isTemplateCached('html', $template))) {
                // Evaluate the cache
-               eval(readTemplateCache('html', $template));
+               $templateContent = readTemplateCache('html', $template, $content);
+
+               // Better remove array element which is only needed in uncached mode
+               unset($GLOBALS['template_eval']['html'][$template]);
        } elseif (!isset($GLOBALS['template_eval']['html'][$template])) {
                // Make all template names lowercase
                $template = strtolower($template);
@@ -335,25 +351,38 @@ function loadTemplate ($template, $return = FALSE, $content = array(), $compileC
                                        $code = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['template_content']['html'][$template] . '<!-- Template ' . $template . ' - End //-->';
 
                                        // Prepare eval() command
-                                       $GLOBALS['template_eval']['html'][$template] = '$ret = "' . getColorSwitchCode($template) . compileCode(escapeQuotes($code), FALSE, TRUE, TRUE, $compileCode) . '";';
+                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                                       $GLOBALS['template_eval']['html'][$template] = '$templateContent = "' . getColorSwitchCode($template) . compileCode(escapeQuotes($code), TRUE, $compileCode) . '";';
                                } elseif (substr($template, 0, 3) == 'js_') {
                                        // JavaScripts don't like entities, dollar signs and timings
-                                       $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), FALSE, TRUE, TRUE, $compileCode) . '");';
+                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                                       $GLOBALS['template_eval']['html'][$template] = '$templateContent = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), TRUE, $compileCode) . '");';
+                               } elseif (isAjaxOutputMode()) {
+                                       // AJAX (JSON content)
+                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                                       $GLOBALS['template_eval']['html'][$template] = '$templateContent = "' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), TRUE, $compileCode) . '";';
                                } else {
                                        // Prepare eval() command, other output doesn't like entities, maybe
-                                       $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['html'][$template]), FALSE, TRUE, TRUE, $compileCode) . '");';
+                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                                       $GLOBALS['template_eval']['html'][$template] = '$templateContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['html'][$template]), TRUE, $compileCode) . '");';
                                }
                        } elseif (isHtmlOutputMode()) {
                                // Add surrounding HTML comments to help finding bugs faster
-                               $ret = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['template_content']['html'][$template] . '<!-- Template ' . $template . ' - End //-->';
-                               $GLOBALS['template_eval']['html'][$template] = '$ret = "' . getColorSwitchCode($template) . compileRawCode(escapeQuotes($ret), FALSE, TRUE, TRUE, $compileCode) . '";';
+                               $templateContent = '<!-- Template ' . $template . ' - Start //-->' . $GLOBALS['template_content']['html'][$template] . '<!-- Template ' . $template . ' - End //-->';
+                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                               $GLOBALS['template_eval']['html'][$template] = '$templateContent = "' . getColorSwitchCode($template) . compileRawCode(escapeQuotes($templateContent), TRUE, $compileCode) . '";';
+                       } elseif (isAjaxOutputMode()) {
+                               // AJAX (JSON content)
+                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                               $GLOBALS['template_eval']['html'][$template] = '$templateContent = "' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), TRUE, $compileCode) . '";';
                        } else {
                                // JavaScript again
-                               $GLOBALS['template_eval']['html'][$template] = '$ret = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), FALSE, TRUE, TRUE, $compileCode) . '");';
+                               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                               $GLOBALS['template_eval']['html'][$template] = '$templateContent = decodeEntities("' . compileRawCode(escapeJavaScriptQuotes($GLOBALS['template_content']['html'][$template]), TRUE, $compileCode) . '");';
                        } // END - if
                } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
                        // Only admins shall see this warning or when installation mode is active
-                       $ret = '<div class="para">
+                       $templateContent = '<div class="para">
        {--TEMPLATE_404--}
 </div>
 <div class="para">
@@ -379,18 +408,18 @@ function loadTemplate ($template, $return = FALSE, $content = array(), $compileC
        } // END - if
 
        // Is there 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()) {
+       if ((empty($templateContent)) && (isDebugModeEnabled())) {
                // Warning, empty output!
                return 'E:' . $template . ',content=<pre>' . print_r($content, TRUE) . '</pre>';
+       } // END - if
+
+       // Not empty so let's put it out! ;)
+       if ($return === TRUE) {
+               // Return the HTML code
+               return $templateContent;
+       } else {
+               // Output directly
+               outputHtml($templateContent);
        }
 }
 
@@ -459,10 +488,10 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
        // Is content an array?
        if (is_array($content)) {
                // Add expiration to array
-               if ((isConfigEntrySet('auto_purge')) && (getAutoPurge() == '0')) {
+               if ((isExtensionInstalled('autopurge')) && (isConfigEntrySet('auto_purge')) && (getAutoPurge() == '0')) {
                        // Will never expire!
                        $content['expiration'] = '{--MAIL_WILL_NEVER_EXPIRE--}';
-               } elseif (isConfigEntrySet('auto_purge')) {
+               } elseif ((isExtensionInstalled('autopurge')) && (isConfigEntrySet('auto_purge'))) {
                        // Create nice date string
                        $content['expiration'] = '{%config,createFancyTime=auto_purge%}';
                } else {
@@ -472,9 +501,12 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
        } // END - if
 
        // Is there cache?
-       if ((!isDebuggingTemplateCache()) && (isTemplateCached('email', $template))) {
+       if ((!isDebugTemplateCacheEnabled()) && (isTemplateCached('email', $template))) {
                // Evaluate the cache
-               eval(readTemplateCache('email', $template));
+               $templateContent = readTemplateCache('email', $template, $content);
+
+               // Better remove array element which is need only in uncached mode
+               unset($GLOBALS['template_eval']['email'][$template]);
        } elseif (!isset($GLOBALS['template_eval']['email'][$template])) {
                // Base directory
                $basePath = sprintf("%stemplates/%s/emails/", getPath(), getLanguage());
@@ -492,16 +524,17 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
                } // END - if
 
                // Now does the final template exists?
-               $newContent = '';
+               $templateContent = '';
                if (isFileReadable($FQFN)) {
                        // The local file does exists so we load it. :)
                        $GLOBALS['template_content']['email'][$template] = readFromFile($FQFN);
 
                        // Run code
-                       $GLOBALS['template_eval']['email'][$template] = '$newContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['email'][$template])) . '");';
+                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Reached!');
+                       $GLOBALS['template_eval']['email'][$template] = '$templateContent = decodeEntities("' . compileRawCode(escapeQuotes($GLOBALS['template_content']['email'][$template])) . '");';
                } elseif (!empty($template)) {
                        // Template file not found
-                       $newContent = '<div class="para">
+                       $templateContent = '<div class="para">
        {--TEMPLATE_404--}: ' . $template . '
 </div>
 <div class="para">
@@ -515,11 +548,11 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
                        // Debug mode not active? Then remove the HTML tags
                        if (!isDebugModeEnabled()) {
                                // Remove HTML tags
-                               $newContent = secureString($newContent);
+                               $templateContent = secureString($templateContent);
                        } // END - if
                } else {
                        // No template name supplied!
-                       $newContent = '{--NO_TEMPLATE_SUPPLIED--}';
+                       $templateContent = '{--NO_TEMPLATE_SUPPLIED--}';
                        $GLOBALS['template_eval']['email'][$template] = '404';
                }
        }
@@ -528,20 +561,20 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
        if ((isset($GLOBALS['template_eval']['email'][$template])) && ($GLOBALS['template_eval']['email'][$template] != '404')) {
                // Eval the code
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - BEFORE EVAL');
-               ///* DEBUG: */ print('<pre>'.htmlentities($GLOBALS['template_eval']['email'][$template]).'</pre>');
+               //* DEBUG: */ print('<pre>'.htmlentities($GLOBALS['template_eval']['email'][$template]).'</pre>');
                eval($GLOBALS['template_eval']['email'][$template]);
                //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'template=' . $template . ' - AFTER EVAL');
        } // END - if
 
        // Are there some content?
-       if (empty($newContent)) {
+       if (empty($templateContent)) {
                // Compiling failed
-               $newContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['template_content']['email'][$template];
+               $templateContent = "Compiler error for template " . $template . " !\nUncompiled content:\n" . $GLOBALS['template_eval']['email'][$template];
 
                // Add last error if the required function exists
                if (function_exists('error_get_last')) {
                        // Add last error and some lines for better overview
-                       $newContent .= "\n--------------------------------------\nDebug:\n" . print_r(error_get_last(), TRUE) . "--------------------------------------\nPlease don't alter these informations!\nThanx.";
+                       $templateContent .= "\n--------------------------------------\nDebug:\n" . print_r(error_get_last(), TRUE) . "--------------------------------------\nPlease don't alter these informations!\nThanx.";
                } // END - if
        } // END - if
 
@@ -549,7 +582,7 @@ function loadEmailTemplate ($template, $content = array(), $userid = NULL, $load
        unset($content);
 
        // Return content
-       return $newContent;
+       return $templateContent;
 }
 
 // "Getter" for menu CSS classes, mainly used in templates
@@ -583,11 +616,11 @@ function getMenuCssClasses ($data) {
 
 // Generate XHTML code for the CAPTCHA
 function generateCaptchaCode ($code, $type, $urlId, $userid) {
-       return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid_top.php?userid=' . $userid . '&amp;' . $type . '=' . $urlId . '&amp;do=img&amp;code=' . $code . '%}" />';
+       return '<img border="0" alt="Code ' . $code . '" src="{%url=mailid.php?userid=' . $userid . '&amp;' . $type . '=' . $urlId . '&amp;do=img&amp;code=' . $code . '%}" />';
 }
 
 // Compiles the given HTML/mail code
-function compileCode ($code, $simple = FALSE, $constants = TRUE, $full = TRUE, $compileCode = TRUE) {
+function compileCode ($code, $full = TRUE, $compileCode = TRUE) {
        // Is the code a string or should we not compile?
        if ((!is_string($code)) || ($compileCode === FALSE)) {
                // Silently return it
@@ -598,7 +631,7 @@ function compileCode ($code, $simple = FALSE, $constants = TRUE, $full = TRUE, $
        $startCompile = microtime(TRUE);
 
        // Comile the code
-       $code = compileRawCode($code, $simple, $constants, $full);
+       $code = compileRawCode($code, $full, $compileCode);
 
        // Get timing
        $compilationTime = $startCompile - microtime(TRUE);
@@ -614,8 +647,7 @@ function compileCode ($code, $simple = FALSE, $constants = TRUE, $full = TRUE, $
 }
 
 // Compiles the code
-// @TODO $simple/$constants are deprecated
-function compileRawCode ($code, $simple = FALSE, $constants = TRUE, $full = TRUE, $compileCode = TRUE) {
+function compileRawCode ($code, $full = TRUE, $compileCode = TRUE) {
        // Is the code a string or shall we not compile?
        if ((!is_string($code)) || ($compileCode === FALSE)) {
                // Silently return it
@@ -732,46 +764,30 @@ function compileRawCode ($code, $simple = FALSE, $constants = TRUE, $full = TRUE
 }
 
 //
-function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'form_select') {
+function addSelectionBox ($type, $default, $prefix = '', $id = NULL, $class = 'form_select') {
        $OUT = '';
 
        if ($type == 'yn') {
                // This is a yes/no selection only!
-               if ($id > 0) $prefix .= '[' . $id . ']';
+               if (isValidId($id)) $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 . ']';
+               if (isValidId($id)) $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
+               case 'ye': // Years
                        // Get current year
                        $year = getYear();
 
                        // Use configured min age or fixed?
                        if (isExtensionInstalledAndNewer('other', '0.2.1')) {
                                // Configured
-                               $startYear = $year - getConfig('min_age');
+                               $startYear = $year - getMinAge();
                        } else {
                                // Fixed 16 years
                                $startYear = $year - 16;
@@ -795,17 +811,9 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'fo
                        } 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('other', '0.2.1')) {
-                                       // Use configured minimum age
-                                       $year = getYear() - getConfig('min_age');
-                               } else {
-                                       // Use fixed 16 years age
-                                       $year = getYear() - 16;
-                               }
 
                                // Construct year selection list
-                               for ($idx = $minYear; $idx <= $year; $idx++) {
+                               for ($idx = $minYear; $idx <= $startYear; $idx++) {
                                        $OUT .= '<option value="' . $idx . '"';
                                        if ($default == $idx) $OUT .= ' selected="selected"';
                                        $OUT .= '>' . $idx . '</option>';
@@ -813,9 +821,40 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'fo
                        }
                        break;
 
-               case 'sec':
-               case 'min':
-                       for ($idx = 0; $idx < 60; $idx+=5) {
+               case 'mo': // Months
+                       foreach ($GLOBALS['month_descr'] as $idx => $descr) {
+                               $OUT .= '<option value="' . $idx . '"';
+                               if ($default == $idx) $OUT .= ' selected="selected"';
+                               $OUT .= '>' . $descr . '</option>';
+                       } // END - for
+                       break;
+
+               case 'mn': // Months, numeric
+                       for ($idx = 0; $idx <= 12; $idx++) {
+                               $OUT .= '<option value="' . $idx . '"';
+                               if ($default == $idx) $OUT .= ' selected="selected"';
+                               $OUT .= '>{%pipe,padLeftZero=' . $idx . '%}</option>';
+                       } // END - for
+                       break;
+
+               case 'we': // Weeks
+                       for ($idx = 0; $idx <= 4; $idx++) {
+                               $OUT .= '  <option value="' . $idx . '"';
+                               if ($default == $idx) $OUT .= ' selected="selected"';
+                               $OUT .= '>' . $idx . '</option>';
+                       } // END - for
+                       break;
+
+               case 'da': // Days
+                       for ($idx = 0; $idx <= 31; $idx++) {
+                               $OUT .= '<option value="' . $idx . '"';
+                               if ($default == $idx) $OUT .= ' selected="selected"';
+                               $OUT .= '>{%pipe,padLeftZero=' . $idx . '%}</option>';
+                       } // END - for
+                       break;
+
+               case 'ho': // Hours
+                       for ($idx = 0; $idx <= 23; $idx++) {
                                if (strlen($idx) == 1) $idx = 0 . $idx;
                                $OUT .= '<option value="' . $idx . '"';
                                if ($default == $idx) $OUT .= ' selected="selected"';
@@ -823,8 +862,9 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'fo
                        } // END - for
                        break;
 
-               case 'hour':
-                       for ($idx = 0; $idx < 24; $idx++) {
+               case 'mi': // Minutes
+               case 'se': // Seconds
+                       for ($idx = 0; $idx <= 59; $idx+=5) {
                                if (strlen($idx) == 1) $idx = 0 . $idx;
                                $OUT .= '<option value="' . $idx . '"';
                                if ($default == $idx) $OUT .= ' selected="selected"';
@@ -832,13 +872,17 @@ function addSelectionBox ($type, $default, $prefix = '', $id = '0', $class = 'fo
                        } // END - for
                        break;
 
-               case 'yn':
+               case 'yn': // Yes/No
                        $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;
+
+               default: // Not detected
+                       reportBug(__FUNCTION__, __LINE__, 'type=' . $type . ',default=' . $default . ',prefix=' .  $prefix . ',id[' . gettype($id) . ']=' . $id . ',class=' . $class . ' - is not supported.');
+                       break;
        }
        $OUT .= '</select>';
        return $OUT;
@@ -923,180 +967,113 @@ function createTimeSelections ($timestamp, $prefix = '', $display = '', $align =
        } // END - switch
 
        // First of all years...
-       $Y = abs(floor($timestamp / (31536000 + $SWITCH)));
-       //* DEBUG: */ debugOutput('Y=' . $Y);
+       $year = abs(floor($timestamp / (31536000 + $SWITCH)));
+       //* DEBUG: */ debugOutput('year=' . $year);
        // Next months...
-       $M = abs(floor($timestamp / 2628000 - $Y * 12));
-       //* DEBUG: */ debugOutput('M=' . $M);
+       $month = abs(floor($timestamp / 2628000 - $year * 12));
+       //* DEBUG: */ debugOutput('month=' . $month);
        // Next weeks
-       $W = abs(floor($timestamp / 604800 - $Y * ((365 + $SWITCH / getOneDay()) / 7) - ($M / 12 * (365 + $SWITCH / getOneDay()) / 7)));
-       //* DEBUG: */ debugOutput('W=' . $W);
+       $week = abs(floor($timestamp / 604800 - $year * ((365 + $SWITCH / getOneDay()) / 7) - ($month / 12 * (365 + $SWITCH / getOneDay()) / 7)));
+       //* DEBUG: */ debugOutput('week=' . $week);
        // Next days...
-       $D = abs(floor($timestamp / 86400 - $Y * (365 + $SWITCH / getOneDay()) - ($M / 12 * (365 + $SWITCH / getOneDay())) - $W * 7));
-       //* DEBUG: */ debugOutput('D=' . $D);
+       $day = abs(floor($timestamp / 86400 - $year * (365 + $SWITCH / getOneDay()) - ($month / 12 * (365 + $SWITCH / getOneDay())) - $week * 7));
+       //* DEBUG: */ debugOutput('day=' . $day);
        // Next hours...
-       $h = abs(floor($timestamp / 3600 - $Y * (365 + $SWITCH / getOneDay()) * 24 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24) - $W * 7 * 24 - $D * 24));
-       //* DEBUG: */ debugOutput('h=' . $h);
+       $hour = abs(floor($timestamp / 3600 - $year * (365 + $SWITCH / getOneDay()) * 24 - ($month / 12 * (365 + $SWITCH / getOneDay()) * 24) - $week * 7 * 24 - $day * 24));
+       //* DEBUG: */ debugOutput('hour=' . $hour);
        // Next minutes..
-       $m = abs(floor($timestamp / 60 - $Y * (365 + $SWITCH / getOneDay()) * 24 * 60 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24 * 60) - $W * 7 * 24 * 60 - $D * 24 * 60 - $h * 60));
-       //* DEBUG: */ debugOutput('m=' . $m);
+       $minute = abs(floor($timestamp / 60 - $year * (365 + $SWITCH / getOneDay()) * 24 * 60 - ($month / 12 * (365 + $SWITCH / getOneDay()) * 24 * 60) - $week * 7 * 24 * 60 - $day * 24 * 60 - $hour * 60));
+       //* DEBUG: */ debugOutput('minute=' . $minute);
        // And at last seconds...
-       $s = abs(floor($timestamp - $Y * (365 + $SWITCH / getOneDay()) * 24 * 3600 - ($M / 12 * (365 + $SWITCH / getOneDay()) * 24 * 3600) - $W * 7 * 24 * 3600 - $D * 24 * 3600 - $h * 3600 - $m * 60));
-       //* DEBUG: */ debugOutput('s=' . $s);
+       $second = abs(floor($timestamp - $year * (365 + $SWITCH / getOneDay()) * 24 * 3600 - ($month / 12 * (365 + $SWITCH / getOneDay()) * 24 * 3600) - $week * 7 * 24 * 3600 - $day * 24 * 3600 - $hour * 3600 - $minute * 60));
+       //* DEBUG: */ debugOutput('second=' . $second);
 
        // Is seconds zero and time is < 60 seconds?
-       if (($s == '0') && ($timestamp < 60)) {
+       if (($second < 1) && ($timestamp < 60)) {
                // Fix seconds
-               $s = round($timestamp);
+               $second = round($timestamp);
        } // END - if
 
+       // Put all calculated values in array
+       $data = array(
+               'Y' => $year,
+               'M' => $month,
+               'W' => $week,
+               'D' => $day,
+               'h' => $hour,
+               'm' => $minute,
+               's' => $second
+       );
+
        //
        // Now we convert them in seconds...
        //
        if ($asArray === TRUE) {
-               // Just put all data in an array for later use
-               $OUT = array(
-                       'Y' => $Y,
-                       'M' => $M,
-                       'W' => $W,
-                       'D' => $D,
-                       'h' => $h,
-                       'm' => $m,
-                       's' => $s
-               );
+               // Just put data array out
+               $OUT = $data;
        } else {
+               // Init array
+               $units = array(
+                       // Time unit -> field name
+                       'unit_field' => array(
+                               'Y' => 'ye',
+                               'M' => 'mn',
+                               'W' => 'we',
+                               'D' => 'da',
+                               'h' => 'ho',
+                               'm' => 'mi',
+                               's' => 'se'
+                       ),
+                       // Time unit -> label
+                       'unit_label' => array(
+                               'Y' => 'YEAR',
+                               'M' => 'MONTH',
+                               'W' => 'WEEK',
+                               'D' => 'DAY',
+                               'h' => 'HOUR',
+                               'm' => 'MINUTE',
+                               's' => 'SECOND'
+                       )
+               );
+
                // 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">{--TIME_UNIT_YEAR--}</strong></td>';
-               } // END - if
-
-               if (isInString('M', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_MONTH--}</strong></td>';
-               } // END - if
-
-               if (isInString('W', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_WEEK--}</strong></td>';
-               } // END - if
-
-               if (isInString('D', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_DAY--}</strong></td>';
-               } // END - if
-
-               if (isInString('h', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_HOUR--}</strong></td>';
-               } // END - if
-
-               if (isInString('m', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_MINUTE--}</strong></td>';
-               } // END - if
-
-               if (isInString('s', $display) || (empty($display))) {
-                       $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_SECOND--}</strong></td>';
-               } // END - if
+               // "Walk" through all units
+               foreach ($units['unit_field'] as $unit => $field) {
+                       // Is this displayed or zero?
+                       if (isInString($unit, $display) || (empty($display))) {
+                               // @TODO <label for="' . $prefix . '_' . $field . '"></<label> not working here
+                               $OUT .= '<td align="center" class="timebox_column bottom"><div class="tiny">{--TIME_UNIT_' . $units['unit_label'][$unit] . '--}</div></td>';
+                       } // END - if
+               } // END - foreach
 
+               // Close table row and open new one
                $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" />';
-               }
+               // "Walk" through all units again
+               foreach ($units['unit_field'] as $unit => $field) {
+                       // Is this used?
+                       if (isInString($unit, $display) || (empty($display))) {
+                               // Generate year selection
+                               $OUT .= '<td align="center">';
+                               $OUT .= addSelectionBox($field, $data[$unit], $prefix, NULL, 'mini_select');
+                               $OUT .= '</td>';
+                       } else {
+                               $OUT .= '<input type="hidden" name="' . $prefix . '_' . $field . '" value="0" />';
+                       }
+               } // END - foreach
 
-               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" />';
-               }
+               // Close all tags
                $OUT .= '</tr>';
                $OUT .= '</table>';
                $OUT .= '</div>';
        }
 
-       // Return generated HTML code
+       // Return generated HTML code or data array
        return $OUT;
 }
 
@@ -1185,23 +1162,29 @@ function generateEmailLink ($email, $table = 'admins') {
  * functionality like logging and admin notification (which you can configure
  * through your admin area).
  *
- * @param      $F                      Function or file basename where the error came from
- * @param      $L                      Line number where the error came from
+ * @param      $file           Function or file basename where the error came from
+ * @param      $line           Line number where the error came from
  * @param      $message        Message which shall be output to web
  * @return     void
  */
-function app_exit ($F, $L, $message) {
+function app_exit ($file, $line, $message) {
        // Check if Script is already dieing and not let it kill itself another 1000 times
        if (isset($GLOBALS['app_died'])) {
                // 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);
+               die('[' . __FUNCTION__ . ':' . __LINE__ . ']: Script wanted to kill itself more than once! Raw message=' . $message . ', file/function=' . $file . ', line=' . $line);
        } // END - if
 
        // Make sure, that the script realy realy diese here and now
        $GLOBALS['app_died'] = TRUE;
 
-       // Set content type as text/html
-       setContentType('text/html');
+       // Is this AJAX mode?
+       if (isAjaxOutputMode()) {
+               // Set content type as application/json
+               setContentType('application/json');
+       } else {
+               // Set content type as text/html
+               setContentType('text/html');
+       }
 
        // Load header
        loadIncludeOnce('inc/header.php');
@@ -1209,13 +1192,22 @@ function app_exit ($F, $L, $message) {
        // Rewrite message for output
        $message = sprintf(
                getMessage('MAILER_HAS_DIED'),
-               basename($F),
-               $L,
+               basename($file),
+               $line,
                $message
        );
 
-       // Load the message template
-       loadTemplate('app_exit_message', FALSE, $message);
+       // Is this AJAX mode again
+       if (isAjaxOutputMode()) {
+               // Load the message template
+               $OUT = loadTemplate('ajax_app_exit_message', TRUE, $message);
+
+               // Output it as JSON encoded
+               outputHtml(encodeJson(array('reply_content' => urlencode(doFinalCompilation($OUT)))));
+       } else {
+               // Load the message template
+               loadTemplate('app_exit_message', FALSE, $message);
+       }
 
        // Load footer
        loadIncludeOnce('inc/footer.php');
@@ -1249,6 +1241,12 @@ function displayParsingTime () {
 
        // Load the template
        $GLOBALS['__page_footer'] .= loadTemplate('show_timings', TRUE, $content);
+
+       // Is debug enabled?
+       if (isDebugModeEnabled()) {
+               // Log loading of total includes
+               //* NOISY-DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'Loaded includes: ' . count($GLOBALS['inc_loaded']) . ', readable files: ' . count($GLOBALS['file_readable']));
+       } // END - if
 }
 
 /**
@@ -1260,16 +1258,16 @@ function displayParsingTime () {
  * app_exit() is more a "private" function and will only output a bug message to
  * the user, no email and no logging.
  *
- * @param      $F                      Function or file basename where the error came from
- * @param      $L                      Line number where the error came from
+ * @param      $file           Function or file basename where the error came from
+ * @param      $line           Line number where the error came from
  * @param      $sendEmail      Wether to send an email to all configured administrators
  * @return     void
  */
-function reportBug ($F, $L, $message = '', $sendEmail = TRUE) {
+function reportBug ($file, $line, $message = '', $sendEmail = TRUE) {
        // Is this already called?
        if (isset($GLOBALS[__FUNCTION__])) {
                // Other backtrace
-               print '[' . $F . ':' . $L . ':] ' . __FUNCTION__ . ' has already died! Message:' . $message . '<br />Backtrace:<pre>';
+               print '[' . $file . ':' . $line . ':] ' . __FUNCTION__ . ' has already died! Message:' . $message . '<br />Backtrace:<pre>';
                debug_print_backtrace();
                die('</pre>');
        } // END - if
@@ -1291,7 +1289,7 @@ function reportBug ($F, $L, $message = '', $sendEmail = TRUE) {
                );
 
                // @TODO Add a little more infos here
-               logDebugMessage($F, $L, strip_tags($message));
+               logDebugMessage($file, $line, strip_tags($message));
        } // END - if
 
        // Add output
@@ -1314,9 +1312,9 @@ function reportBug ($F, $L, $message = '', $sendEmail = TRUE) {
        } // END - if
 
        // Is there HTML/CSS/AJAX mode?
-       if ((isHtmlOutputMode()) || (isCssOutputMode()) || (isAjaxOutputMode())) {
+       if (((isHtmlOutputMode()) || (isCssOutputMode()) || (isAjaxOutputMode())) && (isDebugModeEnabled())) {
                // And abort here
-               app_exit($F, $L, $debug);
+               app_exit($file, $line, $debug);
        } else {
                // Raw/image output mode and all other modes doesn't work well with text ...
                die();
@@ -1363,14 +1361,15 @@ function compileUriCode ($code, $simple = TRUE) {
        // Compile constants
        if ($simple === FALSE) {
                // Add more 'from'
-               array_push($charsCompile['from'], '{--', '--}');
+               array_unshift($charsCompile['from'], '{--', '--}');
 
                // Add more 'to'
-               array_push($charsCompile['to'], '".', '."');
+               array_unshift($charsCompile['to'], '".', '."');
        } // END - if
 
        // Compile QUOT and other non-HTML codes
        $code = str_replace($charsCompile['from'], $charsCompile['to'], $code);
+       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'code=' . $code);
 
        // Return compiled code
        return $code;
@@ -1467,11 +1466,11 @@ function generateExtensionInactiveNotInstalledMessage ($ext_name) {
 
        // Is the extension not installed or just deactivated?
        switch (isExtensionInstalled($ext_name)) {
-               case true; // Deactivated!
+               case TRUE; // Deactivated!
                        $message = generateExtensionInactiveMessage($ext_name);
                        break;
 
-               case false; // Not installed!
+               case FALSE; // Not installed!
                        $message = generateExtensionNotInstalledMessage($ext_name);
                        break;
 
@@ -1486,13 +1485,13 @@ function generateExtensionInactiveNotInstalledMessage ($ext_name) {
 }
 
 // Print code with line numbers
-function linenumberCode ($code)    {
+function lineNumberCode ($code)    {
        // By default copy the code
        $codeE = $code;
 
        if (!is_array($code)) {
                // We need an array, so try it with the new-line character
-               $codeE = explode(chr(10), $code);
+               $codeE = explode(PHP_EOL, $code);
        } // END - if
 
        $count_lines = count($codeE);
@@ -1520,7 +1519,7 @@ function determinePageTitle () {
        $pageTitle = '';
 
        // Config and database connection valid?
-       if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (SQL_IS_LINK_UP()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
+       if ((isConfigLocalLoaded()) && (isConfigurationLoaded()) && (isSqlLinkUp()) && (isExtensionInstalledAndNewer('sql_patches', '0.1.6'))) {
                // Title decoration enabled?
                if ((isTitleDecorationEnabled()) && (getTitleLeft() != '')) {
                        $pageTitle .= '{%config,trim=title_left%} ';
@@ -1540,17 +1539,8 @@ function determinePageTitle () {
                        $pageTitle .= ' {%config,trim=title_middle%} {DQUOTE} . getModuleTitle(getModule()) . {DQUOTE}';
                } // END - if
 
-               // Add title from what file
-               $menuMode = '';
-               if (getModule() == 'login') {
-                       $menuMode = 'member';
-               } elseif (getModule() == 'index') {
-                       $menuMode = 'guest';
-               } elseif (getModule() == 'admin') {
-                       $menuMode = 'admin';
-               } elseif (getModule() == 'sponsor') {
-                       $menuMode = 'sponsor';
-               }
+               // Get menu mode from module
+               $menuMode = getMenuModeFromModule();
 
                // Add middle part (always in admin area!)
                if ((!empty($menuMode)) && ((isWhatTitleEnabled()) || ($menuMode == 'admin'))) {
@@ -1603,10 +1593,13 @@ function isTemplateCached ($prefix, $template) {
 // Flushes non-flushed template cache to disk
 function flushTemplateCache ($prefix, $template, $eval) {
        // Is this cache flushed?
-       if ((isDebuggingTemplateCache() === FALSE) && (isTemplateCached($prefix, $template) === FALSE) && ($eval != '404')) {
+       if ((isDebugTemplateCacheEnabled() === FALSE) && (isTemplateCached($prefix, $template) === FALSE) && ($eval != '404')) {
                // Generate FQFN
                $FQFN = generateCacheFqfn($prefix, $template);
 
+               // Compile code another round for better performance and preserve $ signs
+               $eval = str_replace(array(chr(92), '{DOLLAR}', '{BACK}', '{CONTENT}'), array('', '$', chr(92), '$content'), compileCode(str_replace(array('$content', chr(92)), array('{CONTENT}', '{BACK}'), $eval)));
+
                // Is this a XML template?
                if ($prefix == 'xml') {
                        // Compact only XML templates as emails needs new-line characters and HTML may contain required "comments"
@@ -1614,16 +1607,16 @@ function flushTemplateCache ($prefix, $template, $eval) {
                } // END - if
 
                // And flush it
-               writeToFile($FQFN, $eval, TRUE);
+               writeToFile($FQFN, '<?php ' . $eval . ' ?>', TRUE);
        } // END - if
 }
 
 // Reads a template cache
-function readTemplateCache ($prefix, $template) {
+function readTemplateCache ($prefix, $template, $content) {
        // Check it again
-       if ((isDebuggingTemplateCache()) || (!isTemplateCached($prefix, $template))) {
+       if ((isDebugTemplateCacheEnabled()) || (!isTemplateCached($prefix, $template))) {
                // This should not happen
-               reportBug('Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
+               reportBug(__FUNCTION__, __LINE__, 'Wether debugging of template cache is enabled or template ' . $template . ' is not cached while expected.');
        } // END - if
 
        // Is it cached?
@@ -1631,12 +1624,24 @@ function readTemplateCache ($prefix, $template) {
                // Generate FQFN
                $FQFN = generateCacheFqfn($prefix, $template);
 
-               // And read from it
-               $GLOBALS['template_eval'][$prefix][$template] = readFromFile($FQFN);
+               /*
+                * And read from it.
+                *
+                * WARNING: Do not replace this include() call with loadInclude() as it
+                * would hide local variables away which is here required to make this
+                * work.
+                */
+               include($FQFN);
+
+               // Is the template cache valid?
+               if (!isset($templateContent)) {
+                       // Please clear your cache!
+                       reportBug(__FUNCTION__, __LINE__, 'Template ' . $template . ' uses old structure. Please delete all template cache files and reload.');
+               } // END - if
        } // END - if
 
        // And return it
-       return $GLOBALS['template_eval'][$prefix][$template];
+       return $templateContent;
 }
 
 // Escapes quotes (default is only double-quotes)
@@ -1650,7 +1655,7 @@ function escapeQuotes ($str, $single = FALSE) {
                $str = str_replace(array("\\'", '"', "\\\\"), array(chr(39), "\\\"", chr(92)), $str);
        }
 
-       // Return the escaped string
+       // Return the escape'd string
        return $str;
 }
 
@@ -1678,7 +1683,7 @@ function sendModeMails ($mod, $modes) {
                $hash = encodeHashForCookie(getUserData('password'));
 
                // Does the hash match or should we change it?
-               if (($hash == getSession('u_hash')) || (postRequestElement('pass1') == postRequestElement('pass2'))) {
+               if (($hash == getSession('u_hash')) || (postRequestElement('password1') == postRequestElement('password2'))) {
                        // Load the data
                        $content = getUserDataArray();
 
@@ -1693,16 +1698,16 @@ function sendModeMails ($mod, $modes) {
                                                switch ($mode) {
                                                        case 'normal': break; // Do not add any special lines
                                                        case 'email': // Email was changed!
-                                                               $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestElement('old_email') . chr(10);
+                                                               $content['message'] = '{--MEMBER_CHANGED_EMAIL--}' . ': ' . postRequestElement('old_email') . PHP_EOL;
                                                                break;
 
                                                        case 'password': // Password was changed
-                                                               $content['message'] = '{--MEMBER_CHANGED_PASS--}' . chr(10);
+                                                               $content['message'] = '{--MEMBER_CHANGED_PASS--}' . PHP_EOL;
                                                                break;
 
                                                        default:
                                                                logDebugMessage(__FUNCTION__, __LINE__, sprintf("Unknown mode %s detected.", $mode));
-                                                               $content['message'] = '{--MEMBER_UNKNOWN_MODE--}' . ': ' . $mode . "\n\n";
+                                                               $content['message'] = '{--MEMBER_UNKNOWN_MODE--}' . ': ' . $mode . PHP_EOL . PHP_EOL;
                                                                break;
                                                } // END - switch
                                        } // END - foreach
@@ -1901,7 +1906,7 @@ function generateCacheFqfn ($prefix, $template) {
        if (!isset($GLOBALS['template_cache_fqfn'][$prefix][$template])) {
                // Generate the FQFN
                $GLOBALS['template_cache_fqfn'][$prefix][$template] = sprintf(
-                       "%s_compiled/%s/%s.tpl.cache",
+                       '%s_compiled/%s/%s.tpl.cache',
                        getCachePath(),
                        $prefix,
                        $template
@@ -1930,7 +1935,7 @@ function fixNullEmptyToDashes ($str, $num) {
 // Translates the "pool type" into human-readable
 function translatePoolType ($type) {
        // Return "translation"
-       return sprintf("{--POOL_TYPE_%s--}", strtoupper($type));
+       return sprintf('{--POOL_TYPE_%s--}', strtoupper($type));
 }
 
 // "Translates" given time unit
@@ -1957,6 +1962,12 @@ function displayMessage ($message, $return = FALSE) {
        return loadTemplate('admin_settings_saved', $return, $message);
 }
 
+// Displays given error message in admin_settings_saved template
+function displayErrorMessage ($message, $return = FALSE) {
+       // Load the template
+       return loadTemplate('admin_settings_unsaved', $return, $message);
+}
+
 // Generates a selection box for (maybe) given gender
 function generateGenderSelectionBox ($selectedGender = '', $fieldName = 'gender') {
        // Start the HTML code
@@ -2040,6 +2051,71 @@ function addJavaScriptMenuContent ($menuMode, $mainAction, $action, $what) {
        return $OUT;
 }
 
+// Tries to anonymize some sensitive data (e.g. IP address, user agent, referrer, etc.)
+function anonymizeSensitiveData ($data) {
+       // Trim it
+       $data = trim($data);
+
+       // Is it empty?
+       if (empty($data)) {
+               // Then add three dashes
+               $data = '---';
+       } elseif (isUrlValid($data)) {
+               // Is a referrer, so is it black-listed?
+               if (isAdmin()) {
+                       // Is admin, has always priority
+                       $data = '[<a href="{%pipe,generateFrametesterUrl=' . $data . '%}" target="_blank">{--ADMIN_TEST_URL--}</a>]';
+               } elseif ((isExtensionActive('blacklist')) && (isUrlBlacklisted($data))) {
+                       // Yes, so replace it with text
+                       $data = '<em>{--URL_IS_BLACKLISTED--}</em>';
+               } else {
+                       // A  member is viewing this referral URL
+                       $data = '[<a href="{%pipe,generateDereferrerUrl=' . $data . '%}" target="_blank">{--MEMBER_TEST_URL--}</a>]';
+               }
+       } elseif (isIp4AddressValid($data)) {
+               // Is an IPv4 address
+               $ipArray = explode('.', $data);
+
+               // Only display first 2 octets
+               $data = $ipArray[0] . '.' . $ipArray[1] . '.?.?';
+       } else {
+               // Generic data
+               $data = '<em>{--DATA_IS_HIDDEN--}</em>';
+       }
+
+       // Return it (hopefully) anonymized
+       return $data;
+}
+
+/**
+ * Removes all comments, tabs and new-line characters to compact the content
+ *
+ * @param      $uncompactedContent             The uncompacted content
+ * @return     $compactedContent               The compacted content
+ */
+function compactContent ($uncompactedContent) {
+       // First, remove all tab/new-line/revert characters
+       $compactedContent = str_replace(chr(9), '', str_replace(PHP_EOL, '', str_replace(chr(13), '', $uncompactedContent)));
+
+       // Make a space after >
+       $compactedContent = str_replace(array('>', '  '), array('> ', ' '), $compactedContent);
+
+       // Then regex all comments like <!-- //--> away
+       preg_match_all('/<!--[\w\W]*?(\/\/){0,1}-->/', $compactedContent, $matches);
+
+       // Do we have entries?
+       if (isset($matches[0][0])) {
+               // Remove all
+               foreach ($matches[0] as $match) {
+                       // Remove the match
+                       $compactedContent = str_replace($match, '', $compactedContent);
+               } // END - foreach
+       } // END - if
+
+       // Return compacted content
+       return $compactedContent;
+}
+
 //-----------------------------------------------------------------------------
 //                     Template helper functions for EL code
 //-----------------------------------------------------------------------------
@@ -2074,7 +2150,7 @@ function doTemplateExtensionRegistrationLink ($templateName, $clear, $ext_name)
                $OUT = '<span title="{--ADMIN_EXTENSION_IS_DEPRECATED_TITLE--}">---</span>';
        } elseif (isExtensionProductive($ext_name)) {
                // Productive code
-               $OUT = '<a title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{%url=modules.php?module=admin&amp;what=extensions&amp;reg_ext=' . $ext_name . '%}">{--ADMIN_REGISTER_EXTENSION--}</a>';
+               $OUT = '<a title="{--ADMIN_REGISTER_EXTENSION_TITLE--}" href="{%url=modules.php?module=admin&amp;what=extensions&amp;register_ext=' . $ext_name . '%}">{--ADMIN_REGISTER_EXTENSION--}</a>';
        }
 
        // Return code
@@ -2084,13 +2160,13 @@ function doTemplateExtensionRegistrationLink ($templateName, $clear, $ext_name)
 // Helper function to create bonus mail admin links
 function doTemplateAdminBonusMailLinks ($templateName, $clear, $bonusId) {
        // Call the inner function
-       return generateAdminMailLinks('bid', $bonusId);
+       return generateAdminMailLinks('bonus', $bonusId);
 }
 
 // Helper function to create member mail admin links
 function doTemplateAdminMemberMailLinks ($templateName, $clear, $mailId) {
        // Call the inner function
-       return generateAdminMailLinks('mid', $mailId);
+       return generateAdminMailLinks('normal', $mailId);
 }
 
 // Helper function to create a selection box for YES/NO configuration entries
@@ -2132,6 +2208,25 @@ function doTemplateNoYesSelectionBox ($templateName, $clear, $formField) {
        return $OUT;
 }
 
+// Helper function to add extra content for guest area (module=index and others)
+function doTemplateGuestFooterExtras ($templateName, $clear) {
+       // Init filter data
+       $filterData = array(
+               // Name of used template
+               'template' => $templateName,
+               // Target array for gathered data
+               '__data'   => array(),
+               // Where the HTML output will go
+               '__output' => '',
+       );
+
+       // Run the filter chain
+       $filterData = runFilterChain('guest_footer_extras', $filterData);
+
+       // Return output
+       return $filterData['__output'];
+}
+
 // Helper function to add extra content for member area (module=login)
 function doTemplateMemberFooterExtras ($templateName, $clear) {
        // Is a member logged in?
@@ -2230,69 +2325,41 @@ function doTemplatePointsPaymentMethodSelectionBox ($templateName, $clear = FALS
        return $content;
 }
 
-// Tries to anonymize some sensitive data (e.g. IP address, user agent, referrer, etc.)
-function anonymizeSensitiveData ($data) {
-       // Trim it
-       $data = trim($data);
-
-       // Is it empty?
-       if (empty($data)) {
-               // Then add three dashes
-               $data = '---';
-       } elseif (isUrlValid($data)) {
-               // Is a referrer, so is it black-listed?
-               if (isAdmin()) {
-                       // Is admin, has always priority
-                       $data = '[<a href="{%pipe,generateFrametesterUrl=' . $data . '%}" target="_blank">{--ADMIN_TEST_URL--}</a>]';
-               } elseif (isUrlBlacklisted($data)) {
-                       // Yes, so replace it with text
-                       $data = '<em>{--URL_IS_BLACKLISTED--}</em>';
-               } else {
-                       // A  member is viewing this referral URL
-                       $data = '[<a href="{%pipe,generateDereferrerUrl=' . $data . '%}" target="_blank">{--MEMBER_TEST_URL--}</a>]';
-               }
-       } elseif (isIp4AddressValid($data)) {
-               // Is an IPv4 address
-               $ipArray = explode('.', $data);
-
-               // Only display first 2 octets
-               $data = $ipArray[0] . '.' . $ipArray[1] . '.?.?';
-       } else {
-               // Generic data
-               $data = '<em>{--DATA_IS_HIDDEN--}</em>';
-       }
+// Template helper function to create a deferrer code if URL is not empty
+function doTemplateDereferrerUrl ($templateName, $clear = FALSE, $url = NULL) {
+       // Is the URL not NULL and not empty?
+       if ((!is_null($url)) && (!empty($url))) {
+               // Set HTML with EL code
+               $url = '<a href="{%pipe,generateDereferrerUrl=' . $url . '%}" rel="external" target="_blank">{--ADMIN_TEST_URL--}</a>';
+       } // END - if
 
-       // Return it (hopefully) anonymized
-       return $data;
+       // Return URL (or content) or dashes if empty
+       return fixEmptyContentToDashes($url);
 }
 
-/**
- * Removes all commentd, tabs and new-line characters to compact the content
- *
- * @param      $uncompactedContent             The uncompacted content
- * @return     $compactedContent               The compacted content
- */
-function compactContent ($uncompactedContent) {
-       // First, remove all tab/new-line/revert characters
-       $compactedContent = str_replace(chr(9), '', str_replace(chr(10), '', str_replace(chr(13), '', $uncompactedContent)));
-
-       // Then regex all comments like <!-- //--> away
-       preg_match_all('/<!--[\w\W]*?(\/\/){0,1}-->/', $compactedContent, $matches);
+// Load another template and return its content
+function doTemplateLoadTemplate ($templateName, $clear = FALSE, $theTemplate, $content = array()) {
+       // Load "the" template
+       return loadTemplate($theTemplate, TRUE, $content);
+}
 
-       // Do we have entries?
-       if (isset($matches[0][0])) {
-               // Remove all
-               foreach ($matches[0] as $match) {
-                       // Remove the match
-                       $compactedContent = str_replace($match, '', $compactedContent);
-               } // END - foreach
-       } // END - if
+// Output HTML code for favicon.ico, if found
+function doTemplateMetaFavIcon ($templateName, $clear = FALSE) {
+       // Default is not found
+       $out = '';
 
-       // Set the content again
-       // @TODO Is this needed for e.g. $GLOBALS['template_content'] ? $this->setRawTemplateData($compactedContent);
+       // Check all common extensions
+       foreach (array('ico', 'gif', 'png') as $extension) {
+               // Is the file there?
+               if (isFileReadable(getPath() . 'favicon.' . $extension)) {
+                       // Then use this and abort
+                       $out = '<link rel="shortcut icon" href="{%url=favicon.' . $extension . '%}" type="image/' . $extension . '" />';
+                       break;
+               } // END - if
+       } // END - while
 
-       // Return compacted content
-       return $compactedContent;
+       // Return code
+       return $out;
 }
 
 // [EOF]