diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-19 23:57:56 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-19 23:57:56 +0100 |
commit | 78a2de4e049f478ec1efd92d639aaf11be933335 (patch) | |
tree | d89b346b72b5a2f2fb2fdf78b213c584b14bd04d /system/database/drivers/oci8/oci8_utility.php | |
parent | 9cc5c60052d1942a5f49016a8f36cf90b27b7c78 (diff) |
Fixed visibility declarations on dbforge and utility classes
Diffstat (limited to 'system/database/drivers/oci8/oci8_utility.php')
-rw-r--r-- | system/database/drivers/oci8/oci8_utility.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/database/drivers/oci8/oci8_utility.php b/system/database/drivers/oci8/oci8_utility.php index f4863c0db..bfbf87140 100644 --- a/system/database/drivers/oci8/oci8_utility.php +++ b/system/database/drivers/oci8/oci8_utility.php @@ -41,7 +41,7 @@ class CI_DB_oci8_utility extends CI_DB_utility { * * @return bool */ - protected function _list_databases() + public function _list_databases() { return FALSE; } @@ -56,7 +56,7 @@ class CI_DB_oci8_utility extends CI_DB_utility { * @param string the table name * @return object */ - protected function _optimize_table($table) + public function _optimize_table($table) { return FALSE; // Is this supported in Oracle? } @@ -71,7 +71,7 @@ class CI_DB_oci8_utility extends CI_DB_utility { * @param string the table name * @return object */ - protected function _repair_table($table) + public function _repair_table($table) { return FALSE; // Is this supported in Oracle? } @@ -84,7 +84,7 @@ class CI_DB_oci8_utility extends CI_DB_utility { * @param array Preferences * @return mixed */ - protected function _backup($params = array()) + public function _backup($params = array()) { // Currently unsupported return $this->db->display_error('db_unsuported_feature'); |