diff options
author | svncommit <devs@roundcube.net> | 2005-10-03 18:55:38 +0000 |
---|---|---|
committer | svncommit <devs@roundcube.net> | 2005-10-03 18:55:38 +0000 |
commit | d3d42bde2a5d5e2c7915ee30b79dfde132feaed7 (patch) | |
tree | 8c80c84fd99ebcbe3ba571f94c626d3291fd110a /program | |
parent | 0f1bc4bf0351dd8b284c7b4b69d350e61164b138 (diff) |
affectedRows fix
Diffstat (limited to 'program')
-rwxr-xr-x | program/include/rcube_db.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_db.inc b/program/include/rcube_db.inc index 87cb869f8..96f120f3c 100755 --- a/program/include/rcube_db.inc +++ b/program/include/rcube_db.inc @@ -142,7 +142,7 @@ class rcube_db if (!$this->db_handle) return FALSE; - return $this->last_res_id->affectedRows(); + return $this->db_handle->affectedRows(); } function insert_id($sequence = '') |