Fixing output buffer error in the loader class
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 5d4b259..4b6b19e 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -703,7 +703,7 @@
 		}
 		else
 		{
-			$_ci_CI->append_output(ob_get_contents());
+			$_ci_CI->output->append_output(ob_get_contents());
 			@ob_end_clean();
 		}
 	}