diff --git a/system/libraries/Parser.php b/system/libraries/Parser.php
index 42e78b0..a0c9dab 100644
--- a/system/libraries/Parser.php
+++ b/system/libraries/Parser.php
@@ -44,8 +44,8 @@
 	 */
 	function parse($template, $data, $return = FALSE)
 	{
-		$obj =& get_instance();
-		$template = $obj->load->view($template, $data, TRUE);
+		$CI =& get_instance();
+		$template = $CI->load->view($template, $data, TRUE);
 		
 		if ($template == '')
 		{
@@ -66,7 +66,7 @@
 		
 		if ($return == FALSE)
 		{
-			$obj->output->final_output = $template;
+			$CI->output->final_output = $template;
 		}
 		
 		return $template;