summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-03-13 12:13:43 +0100
committerAndrey Andreev <narf@bofh.bg>2012-03-13 12:13:43 +0100
commit1b5a85671bb28cdf87ef1c32c3d926a14a9409de (patch)
tree7039f9a48b173bc77997a2d1a0f09d86f5451997 /system/database/drivers/oci8
parent7c6813b423668472c401e2b9f7385800d9267d7c (diff)
Swtich _bind_params() from private to protected
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 8e9ba9e5a..6842ec650 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -345,7 +345,7 @@ class CI_DB_oci8_driver extends CI_DB {
*
* @return void
*/
- private function _bind_params($params)
+ protected function _bind_params($params)
{
if ( ! is_array($params) OR ! is_resource($this->stmt_id))
{