Fixing a bug where odbc/mssql/oci8 db drivers would encounter a PHP error due to a function being moved from the input to security class.

Moving remove_invisible_characters() to Common.php so the entire class does not need to be instantiated in those database drivers.
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index cd0e095..6f317d2 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -403,10 +403,7 @@
 	   		return $str;
 	   	}
 
-		// Access the CI object
-		$CI =& get_instance();
-
-		$str = $CI->input->_remove_invisible_characters($str);
+		$str = remove_invisible_characters($str);
 		
 		// escape LIKE condition wildcards
 		if ($like === TRUE)