Don't use error suppression on is_dir(), file_exists()
diff --git a/system/database/drivers/sqlite3/sqlite3_forge.php b/system/database/drivers/sqlite3/sqlite3_forge.php
index 0eed059..d79d15a 100644
--- a/system/database/drivers/sqlite3/sqlite3_forge.php
+++ b/system/database/drivers/sqlite3/sqlite3_forge.php
@@ -93,7 +93,7 @@
public function drop_database($db_name = '')
{
// In SQLite, a database is dropped when we delete a file
- if (@file_exists($this->db->database))
+ if (file_exists($this->db->database))
{
// We need to close the pseudo-connection first
$this->db->close();