summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/mysqli/mysqli_driver.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-01-18 15:31:51 +0100
committerDerek Allard <derek.allard@ellislab.com>2008-01-18 15:31:51 +0100
commitf6cd45ccb9f8825eb44dd2fa736c7aa0082ff98c (patch)
treec872463666fe80062ee2947a85a2a1d03b5e819d /system/database/drivers/mysqli/mysqli_driver.php
parentcdf6a5f6b3c182cdce94c105e61dbea8830dea53 (diff)
fix for count_all
Diffstat (limited to 'system/database/drivers/mysqli/mysqli_driver.php')
-rw-r--r--system/database/drivers/mysqli/mysqli_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php
index 94a29937b..e548fb054 100644
--- a/system/database/drivers/mysqli/mysqli_driver.php
+++ b/system/database/drivers/mysqli/mysqli_driver.php
@@ -306,7 +306,7 @@ class CI_DB_mysqli_driver extends CI_DB {
if ($table == '')
return '0';
- $query = $this->query($this->_count_string . "FROM `".$this->dbprefix.$table."`");
+ $query = $this->query($this->_count_string . $this->_protect_identifiers('numrows'). " FROM " . $this->_protect_identifiers($this->dbprefix.$table));
if ($query->num_rows() == 0)
return '0';