diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-03-13 12:13:43 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-03-13 12:13:43 +0100 |
commit | 1b5a85671bb28cdf87ef1c32c3d926a14a9409de (patch) | |
tree | 7039f9a48b173bc77997a2d1a0f09d86f5451997 | |
parent | 7c6813b423668472c401e2b9f7385800d9267d7c (diff) |
Swtich _bind_params() from private to protected
-rw-r--r-- | system/database/drivers/oci8/oci8_driver.php | 2 |
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)) { |