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

index eed7f99..d2e56d4 100644 (file)
@@ -253,13 +253,11 @@ 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) {