summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-04 18:09:21 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-03-04 18:09:21 +0000
commit09afb00a649d76e50e4d5c2a51e5947ca9e1b55e (patch)
tree48c3caf9847ca214d468f34f45dbd323d5a866b6 /roundcubemail/program
parent0d417bd376ae45e59bb6c4689ae24875c1d5287e (diff)
- fix syntax error (#1486533)
git-svn-id: https://svn.roundcube.net/trunk@3319 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/lib/MDB2/Driver/sqlsrv.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php b/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php
index c00aaf48f..7f1017a6e 100644
--- a/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php
+++ b/roundcubemail/program/lib/MDB2/Driver/sqlsrv.php
@@ -1012,7 +1012,7 @@ class MDB2_Result_sqlsrv extends MDB2_Result_Common
return $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,
'resultset has already been freed', __FUNCTION__);
}
- if (null === $this->result)) {
+ if (null === $this->result) {
return false;
}
$ret = sqlsrv_next_result($this->result);