commit | 820999cb0d82c80d6dc5dde133568812c8113e29 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@bofh.bg> | Tue Mar 20 15:15:57 2012 +0200 |
committer | Andrey Andreev <narf@bofh.bg> | Tue Mar 20 15:15:57 2012 +0200 |
tree | 60b357819fdaec43afd0893c796d28cd799e730c | |
parent | e3e3d50576608e0aa0428358b2fae2da29759901 [diff] |
Switch _process_fields() method in MySQL/MySQLi to protected
diff --git a/system/database/drivers/mysql/mysql_forge.php b/system/database/drivers/mysql/mysql_forge.php index 004a5a1..d317ac3 100644 --- a/system/database/drivers/mysql/mysql_forge.php +++ b/system/database/drivers/mysql/mysql_forge.php
@@ -66,7 +66,7 @@ * @param mixed the fields * @return string */ - private function _process_fields($fields) + protected function _process_fields($fields) { $current_field_count = 0; $sql = '';
diff --git a/system/database/drivers/mysqli/mysqli_forge.php b/system/database/drivers/mysqli/mysqli_forge.php index 9cb1a0c..9ec4bf7 100644 --- a/system/database/drivers/mysqli/mysqli_forge.php +++ b/system/database/drivers/mysqli/mysqli_forge.php
@@ -66,7 +66,7 @@ * @param mixed the fields * @return string */ - public function _process_fields($fields) + protected function _process_fields($fields) { $current_field_count = 0; $sql = '';