whitespace fixes
a minor re-ordering of the changelog
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php
index b0df529..8f4f9a9 100644
--- a/system/codeigniter/Common.php
+++ b/system/codeigniter/Common.php
@@ -93,16 +93,16 @@
 	// folder we'll load the native class from the system/libraries folder.	

 	if (file_exists(APPPATH.'libraries/'.config_item('subclass_prefix').$class.EXT))

 	{

-		require(BASEPATH.'libraries/'.$class.EXT);	

+		require(BASEPATH.'libraries/'.$class.EXT);

 		require(APPPATH.'libraries/'.config_item('subclass_prefix').$class.EXT);

-		$is_subclass = TRUE;	

+		$is_subclass = TRUE;

 	}

 	else

 	{

 		if (file_exists(APPPATH.'libraries/'.$class.EXT))

 		{

-			require(APPPATH.'libraries/'.$class.EXT);	

-			$is_subclass = FALSE;	

+			require(APPPATH.'libraries/'.$class.EXT);

+			$is_subclass = FALSE;

 		}

 		else

 		{

@@ -241,7 +241,7 @@
 		return;

 	}

 

-	$LOG =& load_class('Log');	

+	$LOG =& load_class('Log');

 	$LOG->write_log($level, $message, $php_error);

 }