summaryrefslogtreecommitdiffstats
path: root/system/database
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-03-06 14:02:49 +0100
committerTimothy Warren <tim@timshomepage.net>2012-03-06 14:02:49 +0100
commit7869559a56f0974c1bcf42d6ebd13bd872b3421c (patch)
tree53c7fb87dd6e54bbed3b2335c8c8318dbb0bcf13 /system/database
parente45518d5aa05b0cbd125bf1ae98dd9e62f5fde0a (diff)
Made protect_identifiers public
Diffstat (limited to 'system/database')
-rw-r--r--system/database/DB_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index 71cf86306..7bb5dfabe 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -1194,7 +1194,7 @@ class CI_DB_driver {
* @param mixed the item to escape
* @return mixed the item with backticks
*/
- protected function protect_identifiers($item, $prefix_single = FALSE)
+ public function protect_identifiers($item, $prefix_single = FALSE)
{
return $this->_protect_identifiers($item, $prefix_single);
}