diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php
index c8a00b7..99c95a6 100644
--- a/system/database/DB_driver.php
+++ b/system/database/DB_driver.php
@@ -682,7 +682,8 @@
}
}
- return $this->data_cache['table_names'] =& $retval;
+ $this->data_cache['table_names'] = $retval;
+ return $this->data_cache['table_names'];
}
// --------------------------------------------------------------------
@@ -747,7 +748,8 @@
}
}
- return $this->data_cache['field_names'][$table] =& $retval;
+ $this->data_cache['field_names'][$table] = $retval;
+ return $this->data_cache['field_names'][$table];
}
// --------------------------------------------------------------------
@@ -931,7 +933,8 @@
*/
function cache_on()
{
- return $this->cache_on = TRUE;
+ $this->cache_on = TRUE;
+ return TRUE;
}
// --------------------------------------------------------------------
@@ -944,7 +947,8 @@
*/
function cache_off()
{
- return $this->cache_on = FALSE;
+ $this->cache_on = FALSE;
+ return FALSE;
}
diff --git a/system/database/DB_utility.php b/system/database/DB_utility.php
index c2c5f1f..51e43a7 100644
--- a/system/database/DB_utility.php
+++ b/system/database/DB_utility.php
@@ -110,7 +110,8 @@
}
}
- return $this->data_cache['db_names'] =& $dbs;
+ $this->data_cache['db_names'] = $dbs;
+ return $this->data_cache['db_names'];
}
// --------------------------------------------------------------------
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index e83c640..794405a 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -163,7 +163,8 @@
*/
function get_cursor()
{
- return $this->curs_id = ocinewcursor($this->conn_id);
+ $this->curs_id = ocinewcursor($this->conn_id);
+ return $this->curs_id;
}
// --------------------------------------------------------------------
diff --git a/system/database/drivers/postgre/postgre_utility.php b/system/database/drivers/postgre/postgre_utility.php
index 0c265de..b08b879 100644
--- a/system/database/drivers/postgre/postgre_utility.php
+++ b/system/database/drivers/postgre/postgre_utility.php
@@ -106,7 +106,7 @@
*/
function _repair_table($table)
{
- return return FALSE;
+ return FALSE;
}
// --------------------------------------------------------------------