diff options
author | admin <devnull@localhost> | 2006-10-25 07:12:34 +0200 |
---|---|---|
committer | admin <devnull@localhost> | 2006-10-25 07:12:34 +0200 |
commit | 1716cb80344dcb09dd263293b7901cd5b669e302 (patch) | |
tree | 544c6f45fe307cdd2a1d0f6a5f2bc05f0bceca49 /system/database/drivers/mysql | |
parent | 2bc13859b72ceb8400d37adbba52b8404995bf03 (diff) |
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r-- | system/database/drivers/mysql/mysql_result.php | 2 | ||||
-rw-r--r-- | system/database/drivers/mysql/mysql_utility.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/system/database/drivers/mysql/mysql_result.php b/system/database/drivers/mysql/mysql_result.php index 4bfaf54a4..9b28dead7 100644 --- a/system/database/drivers/mysql/mysql_result.php +++ b/system/database/drivers/mysql/mysql_result.php @@ -135,7 +135,7 @@ class CI_DB_mysql_result extends CI_DB_result { */ function _data_seek($n = 0) { - mysql_data_seek($this->result_id, $n); + return mysql_data_seek($this->result_id, $n); } // -------------------------------------------------------------------- diff --git a/system/database/drivers/mysql/mysql_utility.php b/system/database/drivers/mysql/mysql_utility.php index b0a7dfea7..32007d224 100644 --- a/system/database/drivers/mysql/mysql_utility.php +++ b/system/database/drivers/mysql/mysql_utility.php @@ -73,7 +73,7 @@ class CI_DB_mysql_utility extends CI_DB_utility { */ function _drop_table($table) { - return "DROP TABLE IF EXISTS ".$this->db->_escape_table($name); + return "DROP TABLE IF EXISTS ".$this->db->_escape_table($table); } // -------------------------------------------------------------------- |