From d967abdf1dab8b23fba39ce2aa35fe09cd5578f5 Mon Sep 17 00:00:00 2001 From: webchick Date: Sun, 2 Oct 2011 11:09:00 -0700 Subject: Issue #1054848 by barraponto: Fixing common typos through codespell.py. --- includes/database/sqlite/database.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/database/sqlite') diff --git a/includes/database/sqlite/database.inc b/includes/database/sqlite/database.inc index 0fc0b5528..3e2490b00 100644 --- a/includes/database/sqlite/database.inc +++ b/includes/database/sqlite/database.inc @@ -119,7 +119,7 @@ class DatabaseConnection_sqlite extends DatabaseConnection { try { $count = $this->query('SELECT COUNT(*) FROM ' . $prefix . '.sqlite_master WHERE type = :type AND name NOT LIKE :pattern', array(':type' => 'table', ':pattern' => 'sqlite_%'))->fetchField(); - // We can prune the database file if it doens't have any tables. + // We can prune the database file if it doesn't have any tables. if ($count == 0) { // Detach the database. $this->query('DETACH DATABASE :schema', array(':schema' => $prefix)); -- cgit v1.2.3