From 36df57ce32ebad9416d78e4f86a41e5f1707f4ad Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Tue, 01 Nov 2005 17:03:59 -0500 Subject: [PATCH] Edited MDB2 support --- program/include/rcube_mdb2.inc | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/program/include/rcube_mdb2.inc b/program/include/rcube_mdb2.inc index f87a9c0..f6fde8d 100755 --- a/program/include/rcube_mdb2.inc +++ b/program/include/rcube_mdb2.inc @@ -153,10 +153,10 @@ $this->db_handle->row_offset = $offset; $this->db_handle->row_limit = $numrows; - $result = $this->db_handle->query($query,$params); - //$q = $this->db_handle->prepare($query); - //$q->bindParamArray($params); - //$result = $q->execute(); + //$result = $this->db_handle->query($query,$params); + $q = $this->db_handle->prepare($query); + $q->bindParamArray($params); + $result = $q->execute(); if (PEAR::isError($result)) raise_error(array('code' => 500, -- Gitblit v1.9.1