filepath = false; $compiled->timestamp = false; $compiled->exists = false; } /** * render compiled template code * * @param Smarty_Internal_Template $_template * * @return string * @throws Exception */ public function render($_template) { try { ob_start(); $this->renderUncompiled($_template->source, $_template); return ob_get_clean(); } catch (Exception $e) { ob_get_clean(); throw $e; } } }