From: Roland Häder Date: Mon, 28 Jun 2010 05:23:38 +0000 (+0000) Subject: Some improvements, caching of email templates prepared X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=f4d28601c0ea91db9a9ab7365be4faccfd4147f0 Some improvements, caching of email templates prepared --- diff --git a/confirm.php b/confirm.php index a7c797de47..bd8622996f 100644 --- a/confirm.php +++ b/confirm.php @@ -50,13 +50,13 @@ require('inc/config-global.php'); // Set content type for e.g. search engines setContentType('text/html'); -// No hash provided by default -$URL = 'modules.php?module=index'; +// No hash provided then we redirect to the right page +$URL = 'modules.php?module=index&what=confirm'; // Is the hash there? if (isGetRequestParameterSet('hash')) { - // We have an refid here. So we simply add it - $URL = 'modules.php?module=index&what=confirm&hash=' . getRequestParameter('hash'); + // We have a hash here. So we simply add it + $URL .= '&hash=' . getRequestParameter('hash'); } // END - if // Load the URL diff --git a/inc/functions.php b/inc/functions.php index 7838ec8862..f9a51c0cb6 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -3876,11 +3876,16 @@ function generateMetaDescriptionCode () { } // Generates an FQFN for template cache from the given template name -function generateCacheFqfn ($template) { +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/html/%s.tpl.cache", getConfig('CACHE_PATH'), $template); + $GLOBALS['template_cache_fqfn'][$template] = sprintf( + "%s_compiled/%s/%s.tpl.cache", + getConfig('CACHE_PATH'), + $mode, + $template + ); } // END - if // Return it diff --git a/templates/de/html/admin/admin_user_details.tpl b/templates/de/html/admin/admin_user_details.tpl index e00b017d4c..f31519e5ab 100644 --- a/templates/de/html/admin/admin_user_details.tpl +++ b/templates/de/html/admin/admin_user_details.tpl @@ -1,3 +1,4 @@ +
@@ -191,3 +192,4 @@
+