diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php
index b07b64f..17a985f 100644
--- a/system/libraries/Parser.php
+++ b/system/libraries/Parser.php
@@ -44,8 +44,6 @@
 	 */
 	function parse($template, $data, $return = FALSE)
 	{
-		$OUT =& _load_class('CI_Output');
-
 		$obj =& get_instance();
 		$template = $obj->load->view($template, $data, TRUE);
 		
@@ -68,7 +66,7 @@
 		
 		if ($return == FALSE)
 		{
-			$OUT->final_output = $template;
+			$obj->output->final_output = $template;
 		}
 		
 		return $template;