summaryrefslogtreecommitdiffstats
path: root/system/database/DB_utility.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-11-06 11:53:47 +0100
committerAndrey Andreev <narf@bofh.bg>2012-11-06 11:53:47 +0100
commit8d3afde93f9ff7f461095d5b9147b662610c045b (patch)
tree736d430cb44106a046c81cbd8e9d3b46e95cafe0 /system/database/DB_utility.php
parent083e3c8d39a4fb9f8ef37f61f0ea42ec3fe1389f (diff)
Fix a lang key typo
Diffstat (limited to 'system/database/DB_utility.php')
-rw-r--r--system/database/DB_utility.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php
index a8e34c92d..488ebf3ac 100644
--- a/system/database/DB_utility.php
+++ b/system/database/DB_utility.php
@@ -95,7 +95,7 @@ abstract class CI_DB_utility {
}
elseif ($this->_list_databases === FALSE)
{
- return ($this->db->db_debug) ? $this->db->display_error('db_unsuported_feature') : FALSE;
+ return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
}
$this->db->data_cache['db_names'] = array();
@@ -139,7 +139,7 @@ abstract class CI_DB_utility {
{
if ($this->_optimize_table === FALSE)
{
- return ($this->db->db_debug) ? $this->db->display_error('db_unsuported_feature') : FALSE;
+ return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
}
$query = $this->db->query(sprintf($this->_optimize_table, $this->db->escape_identifiers($table_name)));
@@ -163,7 +163,7 @@ abstract class CI_DB_utility {
{
if ($this->_optimize_table === FALSE)
{
- return ($this->db->db_debug) ? $this->db->display_error('db_unsuported_feature') : FALSE;
+ return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
}
$result = array();
@@ -200,7 +200,7 @@ abstract class CI_DB_utility {
{
if ($this->_repair_table === FALSE)
{
- return ($this->db->db_debug) ? $this->db->display_error('db_unsuported_feature') : FALSE;
+ return ($this->db->db_debug) ? $this->db->display_error('db_unsupported_feature') : FALSE;
}
$query = $this->db->query(sprintf($this->_repair_table, $this->db->escape_identifiers($table_name)));
@@ -361,7 +361,7 @@ abstract class CI_DB_utility {
{
if ($this->db->db_debug)
{
- return $this->db->display_error('db_unsuported_compression');
+ return $this->db->display_error('db_unsupported_compression');
}
$prefs['format'] = 'txt';