Added a stripslashes() into the Upload Library.
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php
index 6511c68..39f1ed5 100644
--- a/system/libraries/Upload.php
+++ b/system/libraries/Upload.php
@@ -711,7 +711,7 @@
 			$filename = str_replace($val, '', $filename);

 		}

 

-		return $filename;

+		return stripslashes($filename);

 	}

 	

 	// --------------------------------------------------------------------