tweak to the new fopen mode constant names
diff --git a/system/codeigniter/Common.php b/system/codeigniter/Common.php
index b6a4ce4..c5c548c 100644
--- a/system/codeigniter/Common.php
+++ b/system/codeigniter/Common.php
@@ -46,7 +46,7 @@
 	{

 		$file = rtrim($file, '/').'/'.md5(rand(1,100));

 		

-		if (($fp = @fopen($file, FOPEN_WRITE_CREATE_EOF)) === FALSE)

+		if (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)

 		{

 			return FALSE;

 		}

@@ -56,7 +56,7 @@
 		@unlink($file);

 		return TRUE;

 	}

-	elseif (($fp = @fopen($file, FOPEN_WRITE_CREATE_EOF)) === FALSE)

+	elseif (($fp = @fopen($file, FOPEN_WRITE_CREATE)) === FALSE)

 	{

 		return FALSE;

 	}