HTML/FlexyFramework/Page.php
authorjohn <john@roojs.com>
Sun, 15 Jul 2018 11:50:34 +0000 (19:50 +0800)
committerjohn <john@roojs.com>
Sun, 15 Jul 2018 11:50:34 +0000 (19:50 +0800)
HTML/FlexyFramework/Page.php

index d2e56d4..eed7f99 100644 (file)
@@ -253,11 +253,13 @@ class HTML_FlexyFramework_Page  {
         $type = isset($this->contentType) ? $this->contentType : 'text/html';
         header('Content-Type: '.$type.';charset='.( empty($options->charset) ? 'UTF-8' : $options->charset ));
 
+
         if (!$this->masterTemplate) {
             return $this->outputBody();
         }
-        
         /* master template */
+
+
         $template_engine = new HTML_Template_Flexy();
         $template_engine->compile($this->masterTemplate);
         if (!$this->_cache || !$this->cacheMethod) {