summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2015-01-12 11:33:37 +0100
committerAndrey Andreev <narf@devilix.net>2015-01-12 11:33:37 +0100
commit5350f056698168061ffde1ba62e8db1715101446 (patch)
treefe3257e417dab12f1f4053308a5a281d0640b721 /system/database/drivers/oci8
parent50518a3887776b0b2b67f445cc0434017e9b71f6 (diff)
Change CI_DB_driver::field_data() signature
The parameter is mandatory, it doesn't make sense to have a default empty string value only to check for it.
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 162a87b01..f57e042c5 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -535,13 +535,9 @@ class CI_DB_oci8_driver extends CI_DB {
* @param string $table
* @return array
*/
- public function field_data($table = '')
+ public function field_data($table)
{
- if ($table === '')
- {
- return ($this->db_debug) ? $this->display_error('db_field_param_missing') : FALSE;
- }
- elseif (strpos($table, '.') !== FALSE)
+ if (strpos($table, '.') !== FALSE)
{
sscanf($table, '%[^.].%s', $owner, $table);
}