diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-07-05 11:20:03 +0200 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-07-05 11:20:03 +0200 |
commit | e8bfb6cb09e11f829c9b3497101e4873c3ba15e8 (patch) | |
tree | 3a704681574d0bb7d49ab6cddfd6e708432fe473 /system | |
parent | 5ca0513e1af6c2498f6f28b769c30d762495389f (diff) |
Suppress mysql_data_seek()'s ambiguous E_WARNING messages
Diffstat (limited to 'system')
-rw-r--r-- | system/database/drivers/mysql/mysql_result.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/mysql/mysql_result.php b/system/database/drivers/mysql/mysql_result.php index 14d6d072a..5b64785cd 100644 --- a/system/database/drivers/mysql/mysql_result.php +++ b/system/database/drivers/mysql/mysql_result.php @@ -132,7 +132,7 @@ class CI_DB_mysql_result extends CI_DB_result { */ protected function _data_seek($n = 0) { - return mysql_data_seek($this->result_id, $n); + return @mysql_data_seek($this->result_id, $n); } // -------------------------------------------------------------------- |