diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-06 19:16:42 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-06 19:16:42 +0100 |
commit | 043f2602c7dc0a0eae62f745a7362160dc8ccec5 (patch) | |
tree | 35b3298825f1143b4f663933a214623314f254dd /system/database/drivers/odbc/odbc_driver.php | |
parent | 4c598360d646f734d254d45b397bc26984999f0a (diff) | |
parent | 032e7ea646b953a8f4d28327d7f487de2ffa7288 (diff) |
Merge upstream branch
Diffstat (limited to 'system/database/drivers/odbc/odbc_driver.php')
-rw-r--r-- | system/database/drivers/odbc/odbc_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/odbc/odbc_driver.php b/system/database/drivers/odbc/odbc_driver.php index a6e08cf2f..2575f431d 100644 --- a/system/database/drivers/odbc/odbc_driver.php +++ b/system/database/drivers/odbc/odbc_driver.php @@ -313,7 +313,7 @@ class CI_DB_odbc_driver extends CI_DB { return 0; } - $query = $this->query($this->_count_string . $this->_protect_identifiers('numrows') . " FROM " . $this->_protect_identifiers($table, TRUE, NULL, FALSE)); + $query = $this->query($this->_count_string . $this->protect_identifiers('numrows') . " FROM " . $this->protect_identifiers($table, TRUE, NULL, FALSE)); if ($query->num_rows() == 0) { |