diff options
author | Tom Needham <needham.thomas@gmail.com> | 2012-07-20 19:27:51 +0000 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2012-07-20 19:27:51 +0000 |
commit | 29d16f61fae1a1a658ae1edc35f3dd15ca582ca7 (patch) | |
tree | 4cd5c9feeab2ffb5c68a7ebb9d43ae463e516fac /lib/MDB2 | |
parent | de8ed98541936d2e109bcdc99875637d671c1bcd (diff) | |
download | nextcloud-server-29d16f61fae1a1a658ae1edc35f3dd15ca582ca7.tar.gz nextcloud-server-29d16f61fae1a1a658ae1edc35f3dd15ca582ca7.zip |
Fix strict standards warnings
Diffstat (limited to 'lib/MDB2')
-rw-r--r-- | lib/MDB2/Driver/sqlite3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 25927aff637..6bfccadad9a 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -1221,7 +1221,7 @@ class MDB2_Statement_sqlite3 extends MDB2_Statement_Common return $affected_rows; } - $result =& $this->db->_wrapResult($result, $this->result_types, + $result = $this->db->_wrapResult($result, $this->result_types, $result_class, $result_wrap_class, $this->limit, $this->offset); $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'post', 'result' => $result)); return $result; |