]> git.mxchange.org Git - mailer.git/commitdiff
Better handling of errors
authorRoland Häder <roland@mxchange.org>
Mon, 28 Jun 2010 08:09:11 +0000 (08:09 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 28 Jun 2010 08:09:11 +0000 (08:09 +0000)
inc/functions.php

index 476927420cdfa2b60f719e567ffd350e494f194f..ab3c7099daaa2c95dec202d83edaf329e5bbb5be 100644 (file)
@@ -3581,7 +3581,13 @@ function flushTemplateCache ($template, $eval) {
 // Reads a template cache
 function readTemplateCache ($template) {
        // Check it again
-       if ((isDebuggingTemplateCache() === false) && (isTemplateCached($template))) {
+       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);